Uses of Interface
pivot.collections.Queue

Packages that use Queue
pivot.collections Defines a set of classes and interfaces that serve as generic collections as well as the data model for UI components. 
pivot.collections.concurrent Contains a set of thread-safe collection implementations. 
pivot.util.concurrent Provides a set of classes to simplify the execution of background tasks. 
 

Uses of Queue in pivot.collections
 

Classes in pivot.collections that implement Queue
 class ArrayQueue<T>
          Implementation of the Queue interface that is backed by an array.
 class LinkedQueue<T>
          Implementation of the Queue interface that is backed by a linked list.
 

Uses of Queue in pivot.collections.concurrent
 

Classes in pivot.collections.concurrent that implement Queue
 class SynchronizedQueue<T>
          Synchronized implementation of the Queue interface.
 

Constructors in pivot.collections.concurrent with parameters of type Queue
SynchronizedQueue(Queue<T> queue)
           
 

Uses of Queue in pivot.util.concurrent
 

Methods in pivot.util.concurrent that return Queue
 Queue<Runnable> Dispatcher.getPendingQueue()
          Returns a reference to the dispatcher's pending runnable queue.