Uses of Interface
org.apache.pivot.collections.Queue
-
Packages that use Queue Package Description 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. -
-
Uses of Queue in org.apache.pivot.collections
Classes in org.apache.pivot.collections that implement Queue Modifier and Type Class Description class
ArrayQueue<T>
class
LinkedQueue<T>
Implementation of theQueue
interface that is backed by a linked list.Methods in org.apache.pivot.collections with parameters of type Queue Modifier and Type Method Description void
QueueListener.Adapter. comparatorChanged(Queue<T> queue, java.util.Comparator<T> previousComparator)
Deprecated.default void
QueueListener. comparatorChanged(Queue<T> queue, java.util.Comparator<T> previousComparator)
Called when a queue's comparator has changed.void
QueueListener.Listeners. comparatorChanged(Queue<T> queue, java.util.Comparator<T> previousComparator)
void
QueueListener.Adapter. itemDequeued(Queue<T> queue, T item)
Deprecated.default void
QueueListener. itemDequeued(Queue<T> queue, T item)
Called when an item has been removed from the head of a queue.void
QueueListener.Listeners. itemDequeued(Queue<T> queue, T item)
void
QueueListener.Adapter. itemEnqueued(Queue<T> queue, T item)
Deprecated.default void
QueueListener. itemEnqueued(Queue<T> queue, T item)
Called when an item has been inserted into the tail of a queue.void
QueueListener.Listeners. itemEnqueued(Queue<T> queue, T item)
void
QueueListener.Adapter. queueCleared(Queue<T> queue)
Deprecated.void
QueueListener.Listeners. queueCleared(Queue<T> queue)
default void
QueueListener. queueCleared(Queue<T> queue)
Called when a queue has been cleared. -
Uses of Queue in org.apache.pivot.collections.concurrent
Classes in org.apache.pivot.collections.concurrent that implement Queue Modifier and Type Class Description class
SynchronizedQueue<T>
Synchronized implementation of theQueue
interface.Constructors in org.apache.pivot.collections.concurrent with parameters of type Queue Constructor Description SynchronizedQueue(Queue<T> queue)
-