Uses of Class
ucar.unidata.collab.Client

Packages that use Client
ucar.unidata.collab Package for collaboration utilities. 
ucar.unidata.idv.collab Collaboration support for the IDV. 
 

Uses of Client in ucar.unidata.collab
 

Methods in ucar.unidata.collab that return Client
protected  Client Server.createClient(Socket clientSocket)
          A factory method for creating a new client.
 

Methods in ucar.unidata.collab with parameters of type Client
 void Server.addClient(Client client)
          Add the given client to the list of clients managed by this server
 void Server.addClient(Client client, boolean andStartListening)
          Add the given client to the list of clients managed by this server
protected  void Server.handleIncomingMessage(Client fromClient, String message)
          Handle the message rcvd from the given client.
protected  void Server.notifyClientAdd(Client client)
          Gets called when we have added a new client.
protected  void Server.notifyClientRemove(Client client)
          Gets called when we have removed a client.
 void Server.removeClient(Client client)
          Remove the given client from the list of clients managed by this server
 void Server.write(String message, Client exceptClient)
          _more_
 

Uses of Client in ucar.unidata.idv.collab
 

Subclasses of Client in ucar.unidata.idv.collab
 class CollabClient
          This provides IDV specific extensions to the Client class to support the collaboration mechanism with the IDV.
 

Methods in ucar.unidata.idv.collab that return Client
protected  Client CollabServer.createClient(Socket clientSocket)
          Factory method for creating our own CollabClient object.
 

Methods in ucar.unidata.idv.collab with parameters of type Client
 void CollabServer.handleIncomingMessage(Client client, String message)
          Route the call to the CollabManager
protected  void CollabServer.notifyClientAdd(Client client)
          Gets called when we have added a new client.
protected  void CollabServer.notifyClientRemove(Client client)
          Gets called when we have removed a client.