Called when a socket is writable.
Get connection state.
The send buffers.
Whether the first item from this queue (if any) has been partially sent (and thus can't be canceled).
Called when a socket is readable.
Called when an error occurs on the socket.
Close a connection. If there is queued data waiting to be sent, wait until it is sent before disconnecting. The disconnect handler will be called immediately, even when not all data has been flushed yet.
Append data to the send buffer.
Cancel all queued Data packets with the given priority. Does not cancel any partially-sent Data.
Returns true if any queues have pending data.
Returns true if there are any queued Data which have not yet begun to be sent.
Returns the number of queued Data at the given priority.
Returns the number of queued bytes at the given priority.
Callback for when a connection has been established.
Callback for incoming data. Data will not be received unless this handler is set.
Callback for when a connection was closed.
Callback setter for when all queued data has been sent.
Implements a stream connection. Queued Data is allowed to be fragmented.