void |
RemoteEndpoint.sendBytes(java.nio.ByteBuffer data,
WriteCallback callback) |
Initiates the asynchronous transmission of a binary message.
|
void |
RemoteEndpoint.sendPartialBytes(java.nio.ByteBuffer fragment,
boolean isLast,
WriteCallback callback) |
Initiates the asynchronous transmission of a partial binary message.
|
void |
RemoteEndpoint.sendPartialString(java.lang.String fragment,
boolean isLast,
WriteCallback callback) |
Initiates the asynchronous transmission of a partial text message.
|
void |
RemoteEndpoint.sendPing(java.nio.ByteBuffer applicationData,
WriteCallback callback) |
Asynchronously send a Ping message containing the given application data to the remote endpoint.
|
void |
RemoteEndpoint.sendPong(java.nio.ByteBuffer applicationData,
WriteCallback callback) |
Allows the developer to asynchronously send an unsolicited Pong message containing the given application data
in order to serve as a unidirectional heartbeat for the session.
|
void |
RemoteEndpoint.sendString(java.lang.String text,
WriteCallback callback) |
Initiates the asynchronous transmission of a text message.
|