|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use RemoteEndpoint | |
|---|---|
| javax.net.websocket | |
| org.glassfish.tyrus | |
| org.glassfish.tyrus.grizzly | |
| org.glassfish.tyrus.spi | |
| Uses of RemoteEndpoint in javax.net.websocket |
|---|
| Methods in javax.net.websocket that return RemoteEndpoint | |
|---|---|
RemoteEndpoint |
Session.getRemote()
Return a reference to the RemoteEndpoint object representing the other end of this conversation. |
RemoteEndpoint<T> |
Session.getRemoteL(Class<T> c)
Return a reference to the RemoteEndpoint that can send messages in the form of objects of class c. |
| Uses of RemoteEndpoint in org.glassfish.tyrus |
|---|
| Classes in org.glassfish.tyrus that implement RemoteEndpoint | |
|---|---|
class |
RemoteEndpointWrapper<T>
Wrapps the RemoteEndpoint and represents the other side of the websocket connection. |
| Methods in org.glassfish.tyrus that return RemoteEndpoint | |
|---|---|
RemoteEndpoint |
SessionImpl.getRemote()
|
RemoteEndpoint<T> |
SessionImpl.getRemoteL(Class<T> aClass)
|
| Methods in org.glassfish.tyrus with parameters of type RemoteEndpoint | |
|---|---|
void |
EndpointWrapper.onClose(RemoteEndpoint gs)
|
void |
EndpointWrapper.onConnect(RemoteEndpoint gs,
String subprotocol,
List<String> extensions)
|
void |
EndpointWrapper.onMessage(RemoteEndpoint gs,
ByteBuffer messageBytes)
|
void |
EndpointWrapper.onMessage(RemoteEndpoint gs,
String messageString)
|
void |
EndpointWrapper.onPartialMessage(RemoteEndpoint gs,
ByteBuffer partialBytes,
boolean last)
|
void |
EndpointWrapper.onPartialMessage(RemoteEndpoint gs,
String partialString,
boolean last)
|
void |
EndpointWrapper.onPing(RemoteEndpoint gs,
ByteBuffer bytes)
|
void |
EndpointWrapper.onPong(RemoteEndpoint gs,
ByteBuffer bytes)
|
| Constructors in org.glassfish.tyrus with parameters of type RemoteEndpoint | |
|---|---|
OutputStreamToAsyncBinaryAdapter(RemoteEndpoint re)
|
|
WriterToAsyncTextAdapter(RemoteEndpoint re)
|
|
| Uses of RemoteEndpoint in org.glassfish.tyrus.grizzly |
|---|
| Classes in org.glassfish.tyrus.grizzly that implement RemoteEndpoint | |
|---|---|
class |
GrizzlyRemoteEndpoint
|
| Uses of RemoteEndpoint in org.glassfish.tyrus.spi |
|---|
| Methods in org.glassfish.tyrus.spi with parameters of type RemoteEndpoint | |
|---|---|
abstract void |
SPIEndpoint.onClose(RemoteEndpoint gs)
Called by the provider when the web socket connection to the given remote endpoint has just closed. |
abstract void |
SPIEndpoint.onConnect(RemoteEndpoint gs,
String subprotocol,
List<String> extensions)
Called by the provider when the web socket connection is established. |
abstract void |
SPIEndpoint.onMessage(RemoteEndpoint gs,
ByteBuffer bytes)
Called by the provider when the web socket connection has an incoming binary message from the given remote endpoint. |
abstract void |
SPIEndpoint.onMessage(RemoteEndpoint gs,
String messageString)
Called by the provider when the web socket connection has an incoming text message from the given remote endpoint. |
abstract void |
SPIEndpoint.onPartialMessage(RemoteEndpoint gs,
ByteBuffer partialBytes,
boolean last)
Called by the provider when the web socket connection has an incoming partial binary message from the given remote endpoint. |
abstract void |
SPIEndpoint.onPartialMessage(RemoteEndpoint gs,
String partialString,
boolean last)
Called by the provider when the web socket connection has an incoming partial text message from the given remote endpoint. |
abstract void |
SPIEndpoint.onPing(RemoteEndpoint gs,
ByteBuffer bytes)
Called by the provider when the web socket connection has an incoming ping message from the given remote endpoint. |
abstract void |
SPIEndpoint.onPong(RemoteEndpoint gs,
ByteBuffer bytes)
Called by the provider when the web socket connection has an incoming pong message from the given remote endpoint. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||