| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.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 null| Method Detail | 
|---|
public boolean add(Object e)
add in interface Collectionadd in interface Queuee - the element to add
Collection.add(E))
NullPointerException - if the specified element is nullpublic boolean offer(Object e)
offer in interface Queuee - the element to add
Queue.offer(java.lang.Object))
NullPointerException - if the specified element is nullpublic Object poll()
Queue
poll in interface Queuepublic Object peek()
Queue
peek in interface Queuepublic boolean isEmpty()
isEmpty in interface CollectionisEmpty in class AbstractCollectionpublic int size()
size in interface Collectionsize in class AbstractCollectionpublic boolean contains(Object o)
contains in interface Collectioncontains in class AbstractCollectiono - object to be checked for containment in this queue
public boolean remove(Object o)
remove in interface Collectionremove in class AbstractCollectiono - 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 Iterableiterator in interface Collectioniterator in class AbstractCollectionpublic 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 QueueNoSuchElementException - 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 QueueNoSuchElementException - if this queue is emptypublic void clear()
poll until it
 returns null.
clear in interface Collectionclear in class AbstractCollectionpublic boolean addAll(Collection c)
addAll in interface CollectionaddAll in class AbstractCollectionc - 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 CollectiontoArray in class AbstractCollectionpublic Object[] toArray(Object[] a)
toArray in interface CollectiontoArray in class AbstractCollection| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||