Data type MonitorEvent
access this type via: net.TCPMonitor (uses)
MonitorEvent instances are returned by a TCPMonitor when activity occurs over any of the monitored sockets.
Fields
TCPSocket socket The socket to which this event relates.
Data userData The userData (if any) that was associated with this socket in the TCPMonitor.
bool recvReady The socket is ready to receive some bytes.
bool sendReady The socket previously failed to send all data requested (because one or more buffers was full), and is now ready to send data again. sendBuffer() should be called on the socket before sending any new data.
bool close The socket should be closed (because the remote end has closed their side).