|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface WebSocketListener
Application handler for a WebSocket tcp stream
The read stream should only be read by the onRead
thread.
The write stream must be synchronized if it's ever written by a thread
other than the serviceRead
Method Summary | |
---|---|
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 |
Method Detail |
---|
void onStart(WebSocketContext context) throws java.io.IOException
java.io.IOException
void onReadBinary(WebSocketContext context, java.io.InputStream is) throws java.io.IOException
java.io.IOException
void onReadText(WebSocketContext context, java.io.Reader is) throws java.io.IOException
java.io.IOException
void onClose(WebSocketContext context) throws java.io.IOException
java.io.IOException
void onDisconnect(WebSocketContext context) throws java.io.IOException
java.io.IOException
void onTimeout(WebSocketContext context) throws java.io.IOException
java.io.IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |