Package | Description |
---|---|
javax.websocket |
This package contains all the WebSocket APIs common to both the client
and server side.
|
Modifier and Type | Method and Description |
---|---|
void |
RemoteEndpoint.Async.sendBinary(java.nio.ByteBuffer data,
SendHandler handler)
Initiates the asynchronous transmission of a binary message.
|
void |
RemoteEndpoint.Async.sendObject(java.lang.Object data,
SendHandler handler)
Initiates the asynchronous transmission of a custom developer object.
|
void |
RemoteEndpoint.Async.sendText(java.lang.String text,
SendHandler handler)
Initiates the asynchronous transmission of a text message.
|