Package com.google.common.collect
Class ForwardingQueue<E>
- java.lang.Object
- 
- com.google.common.collect.ForwardingObject
- 
- com.google.common.collect.ForwardingCollection<E>
- 
- com.google.common.collect.ForwardingQueue<E>
 
 
 
- 
- All Implemented Interfaces:
- Iterable<E>,- Collection<E>,- Queue<E>
 - Direct Known Subclasses:
- EvictingQueue,- ForwardingBlockingQueue,- ForwardingDeque
 
 @GwtCompatible public abstract class ForwardingQueue<E> extends ForwardingCollection<E> implements Queue<E> A queue which forwards all its method calls to another queue. Subclasses should override one or more methods to modify the behavior of the backing queue as desired per the decorator pattern.Warning: The methods of ForwardingQueueforward indiscriminately to the methods of the delegate. For example, overridingForwardingCollection.add(E)alone will not change the behavior ofoffer(E)which can lead to unexpected behavior. In this case, you should overrideofferas well, either providing your own implementation, or delegating to the providedstandardOffermethod.defaultmethod warning: This class does not forward calls todefaultmethods. Instead, it inherits their default implementations. When those implementations invoke methods, they invoke methods on theForwardingQueue.The standardmethods are not guaranteed to be thread-safe, even when all of the methods that they depend on are thread-safe.- Since:
- 2.0
- Author:
- Mike Bostock, Louis Wasserman
 
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedForwardingQueue()Constructor for use by subclasses.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract Queue<E>delegate()Returns the backing delegate instance that methods are forwarded to.Eelement()Retrieves, but does not remove, the head of this queue.booleanoffer(E o)Inserts the specified element into this queue if it is possible to do so immediately without violating capacity restrictions.Epeek()Retrieves, but does not remove, the head of this queue, or returnsnullif this queue is empty.Epoll()Retrieves and removes the head of this queue, or returnsnullif this queue is empty.Eremove()Retrieves and removes the head of this queue.protected booleanstandardOffer(E e)A sensible definition ofoffer(E)in terms ofForwardingCollection.add(E).protected EstandardPeek()protected EstandardPoll()- 
Methods inherited from class com.google.common.collect.ForwardingCollectionadd, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, standardAddAll, standardClear, standardContains, standardContainsAll, standardIsEmpty, standardRemove, standardRemoveAll, standardRetainAll, standardToArray, standardToArray, standardToString, toArray, toArray
 - 
Methods inherited from class com.google.common.collect.ForwardingObjecttoString
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface java.util.CollectionaddAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, parallelStream, remove, removeAll, removeIf, retainAll, size, spliterator, stream, toArray, toArray, toArray
 
- 
 
- 
- 
- 
Constructor Detail- 
ForwardingQueueprotected ForwardingQueue() Constructor for use by subclasses.
 
- 
 - 
Method Detail- 
delegateprotected abstract Queue<E> delegate() Description copied from class:ForwardingObjectReturns the backing delegate instance that methods are forwarded to. Abstract subclasses generally override this method with an abstract method that has a more specific return type, such asForwardingSet.delegate(). Concrete subclasses override this method to supply the instance being decorated.- Specified by:
- delegatein class- ForwardingCollection<E>
 
 - 
offer@CanIgnoreReturnValue public boolean offer(E o) Description copied from interface:java.util.QueueInserts the specified element into this queue if it is possible to do so immediately without violating capacity restrictions. When using a capacity-restricted queue, this method is generally preferable toQueue.add(E), which can fail to insert an element only by throwing an exception.
 - 
poll@CanIgnoreReturnValue public E poll() Description copied from interface:java.util.QueueRetrieves and removes the head of this queue, or returnsnullif this queue is empty.
 - 
remove@CanIgnoreReturnValue public E remove() Description copied from interface:java.util.QueueRetrieves and removes the head of this queue. This method differs frompoll()only in that it throws an exception if this queue is empty.
 - 
peekpublic E peek() Description copied from interface:java.util.QueueRetrieves, but does not remove, the head of this queue, or returnsnullif this queue is empty.
 - 
elementpublic E element() Description copied from interface:java.util.QueueRetrieves, but does not remove, the head of this queue. This method differs frompeekonly in that it throws an exception if this queue is empty.
 - 
standardOfferprotected boolean standardOffer(E e) A sensible definition ofoffer(E)in terms ofForwardingCollection.add(E). If you overrideForwardingCollection.add(E), you may wish to overrideoffer(E)to forward to this implementation.- Since:
- 7.0
 
 - 
standardPeekprotected E standardPeek() A sensible definition ofpeek()in terms ofelement(). If you overrideelement(), you may wish to overridepeek()to forward to this implementation.- Since:
- 7.0
 
 
- 
 
-