Uses of Class
api.Task

Packages that use Task
api   
system   
tasks   
 

Uses of Task in api
 

Methods in api with parameters of type Task
 void Client2Space.put(Task task)
          Add a Task to the Space.
 java.lang.Object Computer.run(Task task)
          Run a task.
 

Uses of Task in system
 

Methods in system that return Task
 Task Space.takeTask()
          Get a task from the task queue.
 

Methods in system with parameters of type Task
 void ComputerProxy.addTask(Task task)
          Add a Task to the local task queue.
 void Space.put(Task task)
          Called remotely by a client to add a Task.
 java.lang.Object ComputerImpl.run(Task task)
          Run a task.
 

Uses of Task in tasks
 

Subclasses of Task in tasks
 class ChatRouterTask
          The task that starts a router server.
 class DistributedChatServerTask
          The Task that starts a distributed chat server.
 

Constructors in tasks with parameters of type Task
ChatServerNetworkTask(Task task)