Uses of Class
org.gridbus.broker.runfile.Task

Packages that use Task
org.gridbus.broker.farming.common   
org.gridbus.broker.persistence   
org.gridbus.broker.persistence.db   
org.gridbus.broker.runfile   
 

Uses of Task in org.gridbus.broker.farming.common
 

Methods in org.gridbus.broker.farming.common that return Task
 Task Job.getTask()
          Task is the sequence of commands that describe what a job has to do.
 

Methods in org.gridbus.broker.farming.common with parameters of type Task
 void Job.setTask(Task task)
          This sets the task for this job
 

Uses of Task in org.gridbus.broker.persistence
 

Methods in org.gridbus.broker.persistence that return Task
 Task Reader.readTask(java.lang.Object taskID, java.lang.Object brokerID)
          Reads the task with the given taskID and returns a Task object
 

Methods in org.gridbus.broker.persistence with parameters of type Task
 void Writer.saveTask(Task t, java.lang.Object brokerID)
          Saves a task to persistent storage
 

Uses of Task in org.gridbus.broker.persistence.db
 

Methods in org.gridbus.broker.persistence.db that return Task
 Task DBReader.readTask(java.lang.Object taskID, java.lang.Object brokerID)
           
 

Methods in org.gridbus.broker.persistence.db with parameters of type Task
 void DBWriter.saveTask(Task t, java.lang.Object brokerID)
           
 

Uses of Task in org.gridbus.broker.runfile
 

Subclasses of Task in org.gridbus.broker.runfile
 class JobRequirement
           
 class NodeRequirement
           
 class Requirement
           
 

Methods in org.gridbus.broker.runfile that return Task
 Task RunFile.getStartTask()
          Gets the "nodestart" task and associated commands defined in the parsed run file.
 Task RunFile.getFinishTask()
          Gets the "rootfinish" task and associated commands defined in the parsed run file.