Contract for an implementation of the WebSocket protocol v8. More...
Public Member Functions | |
abstract void | close () |
Closes the WebSocket connection. More... | |
abstract void | close (fm.liveswitch.WebSocketCloseArgs closeArgs) |
Closes the WebSocket connection. More... | |
abstract int | getBufferedAmount () |
Gets the number of bytes buffered in the send queue. More... | |
abstract boolean | getIsOpen () |
Gets a value indicating whether the WebSocket is connected. More... | |
abstract boolean | getSecure () |
Gets a value indicating whether the WebSocket is secure. More... | |
abstract void | open (fm.liveswitch.WebSocketOpenArgs openArgs) |
Opens the WebSocket connection. More... | |
abstract void | send (fm.liveswitch.WebSocketSendArgs sendArgs) |
Sends a message to the WebSocket server. More... | |
Contract for an implementation of the WebSocket protocol v8.
|
abstract |
Closes the WebSocket connection.
Implemented in fm.liveswitch.WebSocket.
|
abstract |
Closes the WebSocket connection.
closeArgs | The close arguments |
Implemented in fm.liveswitch.WebSocket.
|
abstract |
Gets the number of bytes buffered in the send queue.
Implemented in fm.liveswitch.WebSocket.
|
abstract |
Gets a value indicating whether the WebSocket is connected.
Implemented in fm.liveswitch.WebSocket.
|
abstract |
Gets a value indicating whether the WebSocket is secure.
Implemented in fm.liveswitch.WebSocket.
|
abstract |
Opens the WebSocket connection.
openArgs | The open arguments. |
Implemented in fm.liveswitch.WebSocket.
|
abstract |
Sends a message to the WebSocket server.
sendArgs | The send arguments. |
Implemented in fm.liveswitch.WebSocket.