|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.AbstractCollection org.apache.openjpa.lib.util.concurrent.ConcurrentLinkedQueue
public class ConcurrentLinkedQueue
An unbounded thread-safe queue based on linked nodes.
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.
A ConcurrentLinkedQueue is an appropriate choice when
many threads will share access to a common collection.
This queue does not permit null elements.
This implementation employs an efficient "wait-free"
algorithm based on one described in Simple,
Fast, and Practical Non-Blocking and Blocking Concurrent Queue
Algorithms by Maged M. Michael and Michael L. Scott.
Beware that, unlike in most collections, the size method
is NOT a constant-time operation. Because of the
asynchronous nature of these queues, determining the current number
of elements requires a traversal of the elements.
This class and its iterator implement all of the
optional methods of the Collection
and Iterator
interfaces. Memory consistency effects: As with other concurrent
collections, actions in a thread prior to placing an object into a
ConcurrentLinkedQueue
happen-before
actions subsequent to the access or removal of that element from
the ConcurrentLinkedQueue
in another thread.
This class is a member of the
Java Collections Framework.
Constructor Summary | |
---|---|
ConcurrentLinkedQueue()
|
|
ConcurrentLinkedQueue(Collection c)
Creates a ConcurrentLinkedQueue initially containing the elements of the given collection, added in traversal order of the collection's iterator. |
Method Summary | |
---|---|
boolean |
add(Object e)
Inserts the specified element at the tail of this queue. |
boolean |
addAll(Collection c)
Adds all of the elements in the specified collection to this queue. |
void |
clear()
Removes all of the elements from this queue. |
boolean |
contains(Object o)
Returns true if this queue contains the specified element. |
Object |
element()
Retrieves, but does not remove, the head of this queue. |
boolean |
isEmpty()
Returns true if this queue contains no elements. |
Iterator |
iterator()
Returns an iterator over the elements in this queue in proper sequence. |
boolean |
offer(Object e)
Inserts the specified element at the tail of this queue. |
Object |
peek()
Retrieves, but does not remove, the head of this queue, or returns null if this queue is empty. |
Object |
poll()
Retrieves and removes the head of this queue, or returns null if this queue is empty. |
Object |
remove()
Retrieves and removes the head of this queue. |
boolean |
remove(Object o)
Removes a single instance of the specified element from this queue, if it is present. |
int |
size()
Returns the number of elements in this queue. |
Object[] |
toArray()
|
Object[] |
toArray(Object[] a)
|
Methods inherited from class java.util.AbstractCollection |
---|
containsAll, removeAll, retainAll, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.apache.openjpa.lib.util.concurrent.Queue |
---|
element, remove |
Methods inherited from interface java.util.Collection |
---|
addAll, clear, containsAll, equals, hashCode, removeAll, retainAll, toArray, toArray |
Constructor Detail |
---|
public ConcurrentLinkedQueue()
public ConcurrentLinkedQueue(Collection c)
c
- the collection of elements to initially contain
NullPointerException
- if the specified collection or any
of its elements are nullMethod Detail |
---|
public boolean add(Object e)
add
in interface Collection
add
in interface Queue
e
- the element to add
Collection.add(E)
)
NullPointerException
- if the specified element is nullpublic boolean offer(Object e)
offer
in interface Queue
e
- the element to add
Queue.offer(java.lang.Object)
)
NullPointerException
- if the specified element is nullpublic Object poll()
Queue
poll
in interface Queue
public Object peek()
Queue
peek
in interface Queue
public boolean isEmpty()
isEmpty
in interface Collection
isEmpty
in class AbstractCollection
public int size()
size
in interface Collection
size
in class AbstractCollection
public boolean contains(Object o)
contains
in interface Collection
contains
in class AbstractCollection
o
- object to be checked for containment in this queue
public boolean remove(Object o)
remove
in interface Collection
remove
in class AbstractCollection
o
- element to be removed from this queue, if present
public Iterator iterator()
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.
iterator
in interface Iterable
iterator
in interface Collection
iterator
in class AbstractCollection
public Object remove()
poll
only in that it throws an exception if this
queue is empty. This implementation returns the result of poll
unless the queue is empty.
remove
in interface Queue
NoSuchElementException
- if this queue is emptypublic Object element()
peek
only in that it throws an exception if
this queue is empty.
This implementation returns the result of peek
unless the queue is empty.
element
in interface Queue
NoSuchElementException
- if this queue is emptypublic void clear()
poll
until it
returns null.
clear
in interface Collection
clear
in class AbstractCollection
public boolean addAll(Collection c)
addAll
in interface Collection
addAll
in class AbstractCollection
c
- collection containing elements to be added to this queue
ClassCastException
- if the class of an element of the specified
collection prevents it from being added to this queue
NullPointerException
- if the specified collection contains a
null element and this queue does not permit null elements,
or if the specified collection is null
IllegalArgumentException
- if some property of an element of the
specified collection prevents it from being added to this
queue, or if the specified collection is this queue
IllegalStateException
- if not all the elements can be added at
this time due to insertion restrictionsadd(Object)
public Object[] toArray()
toArray
in interface Collection
toArray
in class AbstractCollection
public Object[] toArray(Object[] a)
toArray
in interface Collection
toArray
in class AbstractCollection
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |