Package org.apache.zookeeper.util
Class CircularBlockingQueue<E>
- java.lang.Object
- 
- org.apache.zookeeper.util.CircularBlockingQueue<E>
 
- 
- All Implemented Interfaces:
- Iterable<E>,- Collection<E>,- BlockingQueue<E>,- Queue<E>
 
 public class CircularBlockingQueue<E> extends Object implements BlockingQueue<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. If the queue is full, the head of the queue (the oldest element) will be removed to make room for the newest element.
- 
- 
Constructor SummaryConstructors Constructor Description CircularBlockingQueue(int queueSize)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(E e)booleanaddAll(Collection<? extends E> arg0)voidclear()booleancontains(Object o)booleancontainsAll(Collection<?> arg0)intdrainTo(Collection<? super E> c)intdrainTo(Collection<? super E> c, int maxElements)Eelement()longgetDroppedCount()Returns the number of elements that were dropped from the queue because the queue was full when a new element was offered.booleanisEmpty()Iterator<E>iterator()booleanoffer(E e)This method differs fromBlockingQueue.offer(Object)in that it will remove the oldest queued element (the element at the front of the queue) in order to make room for any new elements if the queue is full.booleanoffer(E e, long timeout, TimeUnit unit)Epeek()Epoll()Epoll(long timeout, TimeUnit unit)voidput(E e)intremainingCapacity()Eremove()booleanremove(Object o)booleanremoveAll(Collection<?> arg0)booleanretainAll(Collection<?> arg0)intsize()Etake()Object[]toArray()<T> T[]toArray(T[] arg0)- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface java.util.Collectionequals, hashCode, parallelStream, removeIf, spliterator, stream
 
- 
 
- 
- 
- 
Method Detail- 
offerpublic boolean offer(E e) This method differs fromBlockingQueue.offer(Object)in that it will remove the oldest queued element (the element at the front of the queue) in order to make room for any new elements if the queue is full.
 - 
pollpublic E poll(long timeout, TimeUnit unit) throws InterruptedException - Specified by:
- pollin interface- BlockingQueue<E>
- Throws:
- InterruptedException
 
 - 
takepublic E take() throws InterruptedException - Specified by:
- takein interface- BlockingQueue<E>
- Throws:
- InterruptedException
 
 - 
isEmptypublic boolean isEmpty() - Specified by:
- isEmptyin interface- Collection<E>
 
 - 
sizepublic int size() - Specified by:
- sizein interface- Collection<E>
 
 - 
getDroppedCountpublic long getDroppedCount() Returns the number of elements that were dropped from the queue because the queue was full when a new element was offered.- Returns:
- The number of elements dropped (lost) from the queue
 
 - 
drainTopublic int drainTo(Collection<? super E> c) - Specified by:
- drainToin interface- BlockingQueue<E>
 
 - 
addAllpublic boolean addAll(Collection<? extends E> arg0) - Specified by:
- addAllin interface- Collection<E>
 
 - 
clearpublic void clear() - Specified by:
- clearin interface- Collection<E>
 
 - 
containsAllpublic boolean containsAll(Collection<?> arg0) - Specified by:
- containsAllin interface- Collection<E>
 
 - 
removeAllpublic boolean removeAll(Collection<?> arg0) - Specified by:
- removeAllin interface- Collection<E>
 
 - 
retainAllpublic boolean retainAll(Collection<?> arg0) - Specified by:
- retainAllin interface- Collection<E>
 
 - 
toArraypublic Object[] toArray() - Specified by:
- toArrayin interface- Collection<E>
 
 - 
toArraypublic <T> T[] toArray(T[] arg0) - Specified by:
- toArrayin interface- Collection<E>
 
 - 
addpublic boolean add(E e) - Specified by:
- addin interface- BlockingQueue<E>
- Specified by:
- addin interface- Collection<E>
- Specified by:
- addin interface- Queue<E>
 
 - 
containspublic boolean contains(Object o) - Specified by:
- containsin interface- BlockingQueue<E>
- Specified by:
- containsin interface- Collection<E>
 
 - 
drainTopublic int drainTo(Collection<? super E> c, int maxElements) - Specified by:
- drainToin interface- BlockingQueue<E>
 
 - 
offerpublic boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException - Specified by:
- offerin interface- BlockingQueue<E>
- Throws:
- InterruptedException
 
 - 
putpublic void put(E e) throws InterruptedException - Specified by:
- putin interface- BlockingQueue<E>
- Throws:
- InterruptedException
 
 - 
remainingCapacitypublic int remainingCapacity() - Specified by:
- remainingCapacityin interface- BlockingQueue<E>
 
 - 
removepublic boolean remove(Object o) - Specified by:
- removein interface- BlockingQueue<E>
- Specified by:
- removein interface- Collection<E>
 
 
- 
 
-