AbstractWebSocketBuilder

Members

Functions

onData
AbstractWebSocketBuilder onData(Action2!(ByteBuffer, WebSocketConnection) handler)
Undocumented in source. Be warned that the author may not have intended to support it.
onError
AbstractWebSocketBuilder onError(Action2!(Throwable, WebSocketConnection) handler)
Undocumented in source. Be warned that the author may not have intended to support it.
onError
void onError(Throwable t, WebSocketConnection connection)
Undocumented in source. Be warned that the author may not have intended to support it.
onFrame
void onFrame(Frame frame, WebSocketConnection connection)
Undocumented in source. Be warned that the author may not have intended to support it.
onText
AbstractWebSocketBuilder onText(Action2!(string, WebSocketConnection) handler)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

_dataHandler
Action2!(ByteBuffer, WebSocketConnection) _dataHandler;
Undocumented in source.
_errorHandler
Action2!(Throwable, WebSocketConnection) _errorHandler;
Undocumented in source.
_textHandler
Action2!(string, WebSocketConnection) _textHandler;
Undocumented in source.

Meta