Interface | Description |
---|---|
BlockingDroppingQueue<E> |
A
Queue that additionally supports operations that wait for the queue
to become non-empty when retrieving an element, and drop the oldest element
from the queue when storing a new element if space is not available for the
new element. |
Class | Description |
---|---|
ArrayBlockingDroppingQueue<E> |
A bounded variant of a blocking queue
backed by an array.
|