NetworkIO
Interface NetworkListener


public interface NetworkListener

A class NetworkListener class is one that can process any message recieved through ClientBase.


Method Summary
 void processInput(Message message, java.net.Socket socket)
          Process any input recieved from a server.
 

Method Detail

processInput

void processInput(Message message,
                  java.net.Socket socket)
Process any input recieved from a server. The Message should always be processed, but not necessarly the Socket connection.

Parameters:
message - The message recieved.
socket - The socket connection from which the message was recieved.