Uses of Class
proper.remote.Server

Packages that use Server
proper.remote Classes for the distributed computing part of Proper can be found here, i.e. 
 

Uses of Server in proper.remote
 

Subclasses of Server in proper.remote
 class JobClient
          This class acts as a client to a server distributing jobs to be carried out.
Every request the client sends to the server has the type of request in the first line, the port it is listening to in the second line and any other data after that.

For a complete list of commandline parameters just run it with the option "-help".
 class JobServer
          This class is a server for performing distributed computation.
The clients register and unregister themselves with the server, which handles a queue of jobs.
Every Request that is sent between Server and Client has the type of request in the first line.
The job list that the server reads is a simple text file where each line is either a comment (line is starting with a "#") or a real job.
 

Constructors in proper.remote with parameters of type Server
JobClientProcessor(Server server, java.net.Socket client)
          initializes the object
JobDistributor(Server server, java.net.Socket client)
          initializes the object
JobServerProcessor(Server server, java.net.Socket client)
          initializes the object
Processor(Server server, java.net.Socket client)
          initializes the object