java.lang.Object | |||
↳ | java.util.AbstractCollection<E> | ||
↳ | java.util.AbstractQueue<E> | ||
↳ | java.util.concurrent.ArrayBlockingQueue<E> |
A bounded blocking queue backed by an array. This queue orders elements FIFO (first-in-first-out). The head of the queue is that element that has been on the queue the longest time. The tail of the queue is that element that has been on the queue the shortest time. New elements are inserted at the tail of the queue, and the queue retrieval operations obtain elements at the head of the queue.
This is a classic "bounded buffer", in which a fixed-sized array holds elements inserted by producers and extracted by consumers. Once created, the capacity cannot be increased. Attempts to offer an element to a full queue will result in the offer operation blocking; attempts to retrieve an element from an empty queue will similarly block.
This class supports an optional fairness policy for ordering waiting producer and consumer threads. By default, this ordering is not guaranteed. However, a queue constructed with fairness set to true grants threads access in FIFO order. Fairness generally decreases throughput but reduces variability and avoids starvation.
This class implements all of the optional methods of the Collection and Iterator interfaces.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates an ArrayBlockingQueue with the given (fixed)
capacity and default access policy.
| |||||||||||
Creates an ArrayBlockingQueue with the given (fixed)
capacity and the specified access policy.
| |||||||||||
Creates an ArrayBlockingQueue with the given (fixed)
capacity, the specified access policy and initially containing the
elements of the given collection,
added in traversal order of the collection's iterator.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Removes all elements of the queue, leaving it empty.
| |||||||||||
Tests whether this
Collection contains the specified object. | |||||||||||
Removes at most the given number of available elements from
this queue and adds them into the given collection.
| |||||||||||
Removes all available elements from this queue and adds them
into the given collection.
| |||||||||||
Returns an iterator over the elements in this queue in proper sequence.
| |||||||||||
Inserts the specified element at the tail of this queue, waiting if
necessary up to the specified wait time for space to become available.
| |||||||||||
Inserts the specified element at the tail of this queue if possible,
returning immediately if this queue is full.
| |||||||||||
Gets but does not remove the element at the head of the queue.
| |||||||||||
Retrieves and removes the head of this queue, waiting
if necessary up to the specified wait time if no elements are
present on this queue.
| |||||||||||
Gets and removes the element at the head of the queue, or returns
null if there is no element in the queue. | |||||||||||
Adds the specified element to the tail of this queue, waiting if
necessary for space to become available.
| |||||||||||
Returns the number of elements that this queue can ideally (in
the absence of memory or resource constraints) accept without
blocking.
| |||||||||||
Removes one instance of the specified object from this
Collection if one
is contained (optional). | |||||||||||
Returns the number of elements in this queue.
| |||||||||||
Retrieves and removes the head of this queue, waiting
if no elements are present on this queue.
| |||||||||||
Returns an array containing all elements contained in this
Collection . | |||||||||||
Returns a new array containing all elements contained in this
Collection . | |||||||||||
Returns the string representation of this
Collection . |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class java.util.AbstractQueue
| |||||||||||
From class java.util.AbstractCollection
| |||||||||||
From class java.lang.Object
| |||||||||||
From interface java.lang.Iterable
| |||||||||||
From interface java.util.Collection
| |||||||||||
From interface java.util.Queue
| |||||||||||
From interface java.util.concurrent.BlockingQueue
|
Creates an ArrayBlockingQueue with the given (fixed) capacity and default access policy.
capacity | the capacity of this queue |
---|
IllegalArgumentException | if capacity is less than 1 |
---|
Creates an ArrayBlockingQueue with the given (fixed) capacity and the specified access policy.
capacity | the capacity of this queue |
---|---|
fair | if true then queue accesses for threads blocked on insertion or removal, are processed in FIFO order; if false the access order is unspecified. |
IllegalArgumentException | if capacity is less than 1 |
---|
Creates an ArrayBlockingQueue with the given (fixed) capacity, the specified access policy and initially containing the elements of the given collection, added in traversal order of the collection's iterator.
capacity | the capacity of this queue |
---|---|
fair | if true then queue accesses for threads blocked on insertion or removal, are processed in FIFO order; if false the access order is unspecified. |
c | the collection of elements to initially contain |
IllegalArgumentException | if capacity is less than c.size(), or less than 1. |
---|---|
NullPointerException | if c or any element within it is null |
Removes all elements of the queue, leaving it empty.
Tests whether this Collection
contains the specified object. This
implementation iterates over this Collection
and tests, whether any
element is equal to the given object. If object != null
then
object.equals(e)
is called for each element e
returned by
the iterator until the element is found. If object == null
then
each element e
returned by the iterator is compared with the test
e == null
.
o | the object to search for. |
---|
true
if object is an element of this Collection
, false
otherwise.Removes at most the given number of available elements from this queue and adds them into the given collection. A failure encountered while attempting to add elements to collection c may result in elements being in neither, either or both collections when the associated exception is thrown. Attempts to drain a queue to itself result in IllegalArgumentException. Further, the behavior of this operation is undefined if the specified collection is modified while the operation is in progress.
c | the collection to transfer elements into |
---|---|
maxElements | the maximum number of elements to transfer |
Removes all available elements from this queue and adds them into the given collection. This operation may be more efficient than repeatedly polling this queue. A failure encountered while attempting to add elements to collection c may result in elements being in neither, either or both collections when the associated exception is thrown. Attempts to drain a queue to itself result in IllegalArgumentException. Further, the behavior of this operation is undefined if the specified collection is modified while the operation is in progress.
c | the collection to transfer elements into |
---|
Returns an iterator over the elements in this queue in proper sequence. The returned Iterator is a "weakly consistent" iterator that will never throw ConcurrentModificationException, and guarantees to traverse elements as they existed upon construction of the iterator, and may (but is not guaranteed to) reflect any modifications subsequent to construction.
Inserts the specified element at the tail of this queue, waiting if necessary up to the specified wait time for space to become available.
o | the element to add |
---|---|
timeout | how long to wait before giving up, in units of unit |
unit | a TimeUnit determining how to interpret the timeout parameter |
InterruptedException | if interrupted while waiting. |
---|---|
NullPointerException | if the specified element is null. |
Inserts the specified element at the tail of this queue if possible, returning immediately if this queue is full.
o | the element to add. |
---|
NullPointerException | if the specified element is null |
---|
Gets but does not remove the element at the head of the queue.
null
if there is
no element in the queue.Retrieves and removes the head of this queue, waiting if necessary up to the specified wait time if no elements are present on this queue.
timeout | how long to wait before giving up, in units of unit |
---|---|
unit | a TimeUnit determining how to interpret the timeout parameter |
InterruptedException |
---|
Gets and removes the element at the head of the queue, or returns null
if there is no element in the queue.
null
if there is
no element in the queue.Adds the specified element to the tail of this queue, waiting if necessary for space to become available.
o | the element to add |
---|
InterruptedException | if interrupted while waiting. |
---|---|
NullPointerException | if the specified element is null. |
Returns the number of elements that this queue can ideally (in the absence of memory or resource constraints) accept without blocking. This is always equal to the initial capacity of this queue less the current size of this queue.
Note that you cannot always tell if an attempt to add an element will succeed by inspecting remainingCapacity because it may be the case that a waiting consumer is ready to take an element out of an otherwise full queue.
Removes one instance of the specified object from this Collection
if one
is contained (optional). This implementation iterates over this
Collection
and tests for each element e
returned by the iterator,
whether e
is equal to the given object. If object != null
then this test is performed using object.equals(e)
, otherwise
using object == null
. If an element equal to the given object is
found, then the remove
method is called on the iterator and
true
is returned, false
otherwise. If the iterator does
not support removing elements, an UnsupportedOperationException
is thrown.
o | the object to remove. |
---|
true
if this Collection
is modified, false
otherwise.Returns the number of elements in this queue.
Retrieves and removes the head of this queue, waiting if no elements are present on this queue.
InterruptedException |
---|
Returns an array containing all elements contained in this Collection
. If
the specified array is large enough to hold the elements, the specified
array is used, otherwise an array of the same type is created. If the
specified array is used and is larger than this Collection
, the array
element following the Collection
elements is set to null.
If the implementation has ordered elements it will return the element
array in the same order as an iterator would return them.
toArray(new Object[0])
behaves exactly the same way as
toArray()
does.
a | the array. |
---|
Collection
.Returns a new array containing all elements contained in this Collection
.
If the implementation has ordered elements it will return the element
array in the same order as an iterator would return them.
The array returned does not reflect any changes of the Collection
. A new
array is created even if the underlying data structure is already an
array.
Collection
.Returns the string representation of this Collection
. The presentation
has a specific format. It is enclosed by square brackets ("[]"). Elements
are separated by ', ' (comma and space).
Collection
.