void |
BaseWebSocket.onBinary(java.nio.ByteBuffer buffer,
boolean isLast,
DoneCallback onComplete) |
|
default void |
MuWebSocket.onBinary(java.nio.ByteBuffer buffer,
boolean isLast,
DoneCallback onComplete) |
Called when a message is received from the client.
|
default void |
MuWebSocket.onBinary(java.nio.ByteBuffer buffer,
boolean isLast,
DoneCallback doneAndPullData,
java.lang.Runnable releaseBuffer) |
Called when a message is received from the client.
|
void |
RequestBodyListener.onDataReceived(java.nio.ByteBuffer buffer,
DoneCallback doneCallback) |
Called when request data is received from the client.
|
void |
BaseWebSocket.onPing(java.nio.ByteBuffer payload,
DoneCallback onComplete) |
|
void |
MuWebSocket.onPing(java.nio.ByteBuffer payload,
DoneCallback onComplete) |
Called when a ping message is sent from a client.
|
void |
BaseWebSocket.onPong(java.nio.ByteBuffer payload,
DoneCallback onComplete) |
|
void |
MuWebSocket.onPong(java.nio.ByteBuffer payload,
DoneCallback onComplete) |
Called when a pong message is sent from the client.
|
void |
BaseWebSocket.onText(java.lang.String message,
boolean isLast,
DoneCallback onComplete) |
|
default void |
MuWebSocket.onText(java.lang.String message,
boolean isLast,
DoneCallback onComplete) |
Called when a message is received from the client.
|
void |
MuWebSocketSession.sendBinary(java.nio.ByteBuffer message,
boolean isLastFragment,
DoneCallback doneCallback) |
Sends a full or partial message to the client asynchronously with an optional parameter allowing partial fragments to be sent
|
void |
MuWebSocketSession.sendBinary(java.nio.ByteBuffer message,
DoneCallback doneCallback) |
Sends a message to the client asynchronously
|
void |
MuWebSocketSession.sendPing(java.nio.ByteBuffer payload,
DoneCallback doneCallback) |
Sends a ping message to the client, which is used for keeping sockets alive.
|
void |
MuWebSocketSession.sendPong(java.nio.ByteBuffer payload,
DoneCallback doneCallback) |
|
void |
MuWebSocketSession.sendText(java.lang.String message,
boolean isLastFragment,
DoneCallback doneCallback) |
Sends a full or partial message to the client asynchronously with an optional parameter allowing partial fragments to be sent
|
void |
MuWebSocketSession.sendText(java.lang.String message,
DoneCallback doneCallback) |
Sends a message to the client asynchronously
|
void |
AsyncHandle.write(java.nio.ByteBuffer data,
DoneCallback callback) |
Writes data to the response asynchronously.
|