Uses of Interface
org.apache.pivot.collections.Queue

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

Uses of Queue in org.apache.pivot.collections
 

Classes in org.apache.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.
 

Methods in org.apache.pivot.collections with parameters of type Queue
 void Queue.QueueListenerList.itemDequeued(Queue<T> queue, T item)
           
 void QueueListener.itemDequeued(Queue<T> queue, T item)
          Called when an item has been removed from the head of a queue.
 void Queue.QueueListenerList.itemEnqueued(Queue<T> queue, T item)
           
 void QueueListener.itemEnqueued(Queue<T> queue, T item)
          Called when an item has been inserted into the tail of a queue.
 

Uses of Queue in org.apache.pivot.collections.concurrent
 

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

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

Uses of Queue in org.apache.pivot.util.concurrent
 

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