Uses of Class
org.ourgrid.common.spec.TaskSpec

Packages that use TaskSpec
org.ourgrid.common.spec   
org.ourgrid.mygrid.replicaexecutor.test   
org.ourgrid.mygrid.scheduler.jobmanager   
org.ourgrid.mygrid.ui.gui   
 

Uses of TaskSpec in org.ourgrid.common.spec
 

Methods in org.ourgrid.common.spec that return types with arguments of type TaskSpec
 java.util.List<TaskSpec> JobSpec.getTaskSpecs()
           
 

Method parameters in org.ourgrid.common.spec with type arguments of type TaskSpec
 void JobSpec.setTaskSpecs(java.util.List<TaskSpec> taskSpecs)
          Inserts a list of task specifications.
 

Constructor parameters in org.ourgrid.common.spec with type arguments of type TaskSpec
JobSpec(java.lang.String label, java.lang.String requirements, java.util.List<TaskSpec> taskSpecs)
          Constructor.
 

Uses of TaskSpec in org.ourgrid.mygrid.replicaexecutor.test
 

Subclasses of TaskSpec in org.ourgrid.mygrid.replicaexecutor.test
 class FakeTaskSpec
          Description: a fake class to be used by unit tests
 

Uses of TaskSpec in org.ourgrid.mygrid.scheduler.jobmanager
 

Methods in org.ourgrid.mygrid.scheduler.jobmanager that return TaskSpec
 TaskSpec TaskEntry.getSpec()
           
 TaskSpec ReplicaEntry.getSpec()
          Returns the TaskSpec of this replica.
 

Methods in org.ourgrid.mygrid.scheduler.jobmanager with parameters of type TaskSpec
protected  ReplicaEntry TaskEntry.createReplicaEntry(int id, int taskId, int jobId, TaskSpec taskSpec)
           
protected  TaskEntry JobEntry.createTaskEntry(TaskSpec taskSpec, int nextTaskId, int id, int maxTaskFails, int maxTaskReplicas)
           
 

Method parameters in org.ourgrid.mygrid.scheduler.jobmanager with type arguments of type TaskSpec
protected  java.util.List<TaskEntry> JobEntry.createTasks(java.util.List<TaskSpec> taskSpecs)
          Creates the job's tasks according the specification.
 

Constructors in org.ourgrid.mygrid.scheduler.jobmanager with parameters of type TaskSpec
ReplicaEntry(int id, int taskId, int jobId, TaskSpec taskSpec)
          The constructor.
TaskEntry(TaskSpec taskSpec, int id, int jobId, int maxFails, int maxReplicas)
          The constructor.
 

Uses of TaskSpec in org.ourgrid.mygrid.ui.gui
 

Methods in org.ourgrid.mygrid.ui.gui that return TaskSpec
 TaskSpec SimpleReplicaEntry.getSpec()
           
 TaskSpec SimpleTaskEntry.getTaskSpec()