public interface WebSocketListener
onRead thread.
The write stream must be synchronized if it's ever written by a thread
other than the serviceRead| Modifier and Type | Method and Description |
|---|---|
void |
onClose(WebSocketContext context)
Called when the peer closes the connection gracefully.
|
void |
onDisconnect(WebSocketContext context)
Called when the connection disconnects.
|
void |
onReadBinary(WebSocketContext context,
java.io.InputStream is)
Called when a binary message is available
|
void |
onReadText(WebSocketContext context,
java.io.Reader is)
Called when a text message is available
|
void |
onStart(WebSocketContext context)
Called after the server sends its handshake response.
|
void |
onTimeout(WebSocketContext context)
Called when the connection times out
|
void onStart(WebSocketContext context) throws java.io.IOException
java.io.IOExceptionvoid onReadBinary(WebSocketContext context, java.io.InputStream is) throws java.io.IOException
java.io.IOExceptionvoid onReadText(WebSocketContext context, java.io.Reader is) throws java.io.IOException
java.io.IOExceptionvoid onClose(WebSocketContext context) throws java.io.IOException
java.io.IOExceptionvoid onDisconnect(WebSocketContext context) throws java.io.IOException
java.io.IOExceptionvoid onTimeout(WebSocketContext context) throws java.io.IOException
java.io.IOException