Uses of Class
paratask.runtime.TaskID

Packages that use TaskID
paratask.runtime Parallel Task runtime classes. 
 

Uses of TaskID in paratask.runtime
 

Subclasses of TaskID in paratask.runtime
 class TaskIDGroup<E>
          An extension of TaskID to contain multiple tasks.
 

Methods in paratask.runtime that return TaskID
static TaskID CurrentTask.currentTaskID()
          Return the current TaskID associated with the currently executing task.
 

Methods in paratask.runtime that return types with arguments of type TaskID
static java.util.ArrayList<TaskID> ParaTask.allTasksInGroup(TaskIDGroup group)
          A recursive convenience function that digs into the TaskIDGroup and returns all the individual TaskIDs.
static java.util.ArrayList<TaskID> ParaTask.allTasksInList(java.util.ArrayList<TaskID> list)
          Flattens a list of TaskIDs.
 java.util.Iterator<TaskID<E>> TaskIDGroup.groupMembers()
          Return an iterator for the set of TaskIDs contained in this group.
 

Methods in paratask.runtime with parameters of type TaskID
 void TaskIDGroup.add(TaskID<E> id)
          Add a task to this group.
 

Method parameters in paratask.runtime with type arguments of type TaskID
static java.util.ArrayList<TaskID> ParaTask.allTasksInList(java.util.ArrayList<TaskID> list)
          Flattens a list of TaskIDs.