All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jetty.websocket.api.annotations.OnWebSocketMessage Maven / Gradle / Ivy

There is a newer version: 11.0.24
Show newest version
//
// ========================================================================
// Copyright (c) 1995-2022 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//

package org.eclipse.jetty.websocket.api.annotations;

import java.io.Reader;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.eclipse.jetty.websocket.api.Session;
import org.eclipse.jetty.websocket.api.WebSocketPartialListener;

/**
 * Annotation for tagging methods to receive Binary or Text Message events.
 * 

* Acceptable method patterns.
* Note: {@code methodName} can be any name you want to use. *

* Text Message Versions *

    *
  1. {@code public void methodName(String text)}
  2. *
  3. {@code public void methodName(Session session, String text)}
  4. *
  5. {@code public void methodName(Reader reader)}
  6. *
  7. {@code public void methodName(Session session, Reader reader)}
  8. *
*

Note: that the {@link Reader} in this case will always use UTF-8 encoding/charset (this is dictated by the RFC 6455 spec for Text Messages. If you need to * use a non-UTF-8 encoding/charset, you are instructed to use the binary messaging techniques.

* Binary Message Versions *
    *
  1. {@code public void methodName(ByteBuffer message)}
  2. *
  3. {@code public void methodName(Session session, ByteBuffer message)}
  4. *
  5. {@code public void methodName(byte[] buf, int offset, int length)}
  6. *
  7. {@code public void methodName(Session session, byte[] buf, int offset, int length)}
  8. *
  9. {@code public void methodName(InputStream stream)}
  10. *
  11. {@code public void methodName(Session session, InputStream stream)}
  12. *
* Partial Message Variations *

These are used to receive partial messages without aggregating them into a complete WebSocket message. Instead the a boolean * argument is supplied to indicate whether this is the last segment of data of the message. See {@link WebSocketPartialListener} * interface for more details on partial messages.

*
    *
  1. {@code public void methodName(ByteBuffer payload, boolean last)}
  2. *
  3. {@code public void methodName(String payload, boolean last)}
  4. *
*

Note: Similar to the signatures above these can all be used with an optional first {@link Session} parameter.

*/ @Documented @Retention(RetentionPolicy.RUNTIME) @Target(value = {ElementType.METHOD}) public @interface OnWebSocketMessage { /* no config */ }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy