Uses of Class
iglu.net.ClientHandler

Packages that use ClientHandler
iglu.examples Some examples to illustrate how the classes work. 
iglu.net Classes to make TCP/IP programming easier.  Includes a multi-threaded server class. 
 

Uses of ClientHandler in iglu.examples
 

Subclasses of ClientHandler in iglu.examples
static class ProxyServerExample.myURLHandler
           
 

Uses of ClientHandler in iglu.net
 

Subclasses of ClientHandler in iglu.net
 class WebHandler
          Implements the ClientHandler needed for a proxy server.
 

Methods in iglu.net that return ClientHandler
 ClientHandler PortServer.getWatcher(java.net.Socket client, PortServer ms)
          This returns a ClientHandler which handles the input from the client.
 ClientHandler ClientCreator.CreateClient(java.net.Socket client, PortServer myServer)
          returns an object descended from ClientHandler which knows how to create client threads to handle client connections to the server's port.
 

Methods in iglu.net with parameters of type ClientHandler
protected  void PortServer.clientReady(ClientHandler nc)
          Pre-processing of the clientHandler.
 void PortServer.clientDone(ClientHandler nc)
          Post-processing of the clientHandler.