edu.wpi.prc.task.queue
Interface TransitionerQueue<T>

Type Parameters:
T - The type of object to be stored in the queue.
All Superinterfaces:
java.util.Collection<T>, java.lang.Iterable<T>, java.util.Set<T>
All Known Implementing Classes:
MultiPriorityQueue

public interface TransitionerQueue<T>
extends java.lang.Iterable<T>, java.util.Set<T>

The TransitionerQueue is an interface for WorkUnit and Result queues used in the Transitioner.

Author:
James Baldassari

Method Summary
 boolean addAll(T[] tArray)
           
 T first()
           
 T removeFirst()
           
 
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
 

Method Detail

addAll

boolean addAll(T[] tArray)

first

T first()

removeFirst

T removeFirst()