| Modifier and Type | Method and Description |
|---|---|
abstract javax.websocket.Session |
EndpointWrapper.createSessionForRemoteEndpoint(RemoteEndpoint re,
String subprotocol,
List<javax.websocket.Extension> extensions)
Creates a Session based on the
RemoteEndpoint, subprotocols and extensions. |
abstract void |
EndpointWrapper.onClose(RemoteEndpoint gs,
javax.websocket.CloseReason closeReason)
Called by the provider when the web socket connection
to the given remote endpoint has just closed.
|
abstract void |
EndpointWrapper.onConnect(RemoteEndpoint gs,
String subprotocol,
List<javax.websocket.Extension> extensions)
Called by the provider when the web socket connection
is established.
|
abstract void |
EndpointWrapper.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 |
EndpointWrapper.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 |
EndpointWrapper.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 |
EndpointWrapper.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 |
EndpointWrapper.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 |
EndpointWrapper.onPong(RemoteEndpoint gs,
ByteBuffer bytes)
Called by the provider when the web socket connection
has an incoming pong message from the given remote endpoint.
|
Copyright © 2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.