squint
Interface TCPListener

All Known Implementing Classes:
GUIManager

public interface TCPListener

Describes objects that can be notified when data arrives through a TCPConnection.


Method Summary
 void connectionClosed(java.lang.Object which)
          Invoked when the remote side of a connection has been closed.
 void dataAvailable(java.lang.Object which)
          Invoked when data is available through a TCPConnection.
 

Method Detail

dataAvailable

void dataAvailable(java.lang.Object which)
Invoked when data is available through a TCPConnection.

Parameters:
which - Identity of the TCPConnection through which data has arrived.

connectionClosed

void connectionClosed(java.lang.Object which)
Invoked when the remote side of a connection has been closed.

Parameters:
which - Identity of the TCPConnection that has been closed.