|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.AbstractCollection edu.emory.mathcs.backport.java.util.AbstractCollection edu.emory.mathcs.backport.java.util.AbstractQueue edu.emory.mathcs.backport.java.util.concurrent.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 happen-before actions subsequent to the access or removal of that element from the in another thread.
This class is a member of the Java Collections Framework.
Constructor Summary | |
ConcurrentLinkedQueue()
Creates a ConcurrentLinkedQueue that is initially empty. |
|
ConcurrentLinkedQueue(java.util.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(java.lang.Object e)
Inserts the specified element at the tail of this queue. |
boolean |
contains(java.lang.Object o)
Returns true if this queue contains the specified element. |
boolean |
isEmpty()
Returns true if this queue contains no elements. |
java.util.Iterator |
iterator()
Returns an iterator over the elements in this queue in proper sequence. |
boolean |
offer(java.lang.Object e)
Inserts the specified element at the tail of this queue. |
java.lang.Object |
peek()
Retrieves, but does not remove, the head of this queue, or returns null if this queue is empty. |
java.lang.Object |
poll()
Retrieves and removes the head of this queue, or returns null if this queue is empty. |
boolean |
remove(java.lang.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. |
Methods inherited from class edu.emory.mathcs.backport.java.util.AbstractQueue |
addAll, clear, element, remove |
Methods inherited from class edu.emory.mathcs.backport.java.util.AbstractCollection |
toArray, toArray |
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 edu.emory.mathcs.backport.java.util.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(java.util.Collection c)
c
- the collection of elements to initially contain
java.lang.NullPointerException
- if the specified collection or any
of its elements are nullMethod Detail |
public boolean add(java.lang.Object e)
add
in interface Queue
add
in class AbstractQueue
e
- the element to add
Collection.add(java.lang.Object)
)
java.lang.NullPointerException
- if the specified element is nullpublic boolean offer(java.lang.Object e)
offer
in interface Queue
e
- the element to add
Queue.offer(java.lang.Object)
)
java.lang.NullPointerException
- if the specified element is nullpublic java.lang.Object poll()
Queue
poll
in interface Queue
public java.lang.Object peek()
Queue
peek
in interface Queue
public boolean isEmpty()
isEmpty
in interface java.util.Collection
public int size()
Beware that, unlike in most collections, this method is NOT a constant-time operation. Because of the asynchronous nature of these queues, determining the current number of elements requires an O(n) traversal.
size
in interface java.util.Collection
public boolean contains(java.lang.Object o)
contains
in interface java.util.Collection
o
- object to be checked for containment in this queue
public boolean remove(java.lang.Object o)
remove
in interface java.util.Collection
o
- element to be removed from this queue, if present
public java.util.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 java.util.Collection
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |