Uses of Interface
edu.wpi.prc.task.Prioritizable

Packages that use Prioritizable
edu.wpi.prc.task   
edu.wpi.prc.task.queue   
 

Uses of Prioritizable in edu.wpi.prc.task
 

Classes in edu.wpi.prc.task that implement Prioritizable
 class NonPersistentResult
          NonPersistentResult is a stripped-down version of the Result class.
 class NonPersistentWorkUnit
          NonPersistentWorkUnit is a stripped-down version of the WorkUnit class.
 class Result
          A Result is a type of Task that contains data that was analyzed by the science application and returned by a client.
 class Task
          The Task class stores information about each task (WorkUnit or Result), including the task's ID, the users who are responsible for this task, and the data the task contains.
 class WorkUnit
          A WorkUnit is a type of Task that contains raw data to be analyzed by the science application.
 

Uses of Prioritizable in edu.wpi.prc.task.queue
 

Classes in edu.wpi.prc.task.queue with type parameters of type Prioritizable
 class MultiPriorityQueue<T extends Prioritizable>
          Stores queues of Prioritizable objects.
 

Methods in edu.wpi.prc.task.queue with parameters of type Prioritizable
 boolean MultiPriorityQueue.addAll(T[] tArray)
          Adds all objects in the given array to the MultiPriorityQueue.