Package com.google.common.collect
Class ForwardingQueue<E extends @Nullable java.lang.Object>
- java.lang.Object
-
- com.google.common.collect.ForwardingObject
-
- com.google.common.collect.ForwardingCollection<E>
-
- com.google.common.collect.ForwardingQueue<E>
-
- All Implemented Interfaces:
java.lang.Iterable<E>
,java.util.Collection<E>
,java.util.Queue<E>
- Direct Known Subclasses:
EvictingQueue
,ForwardingBlockingQueue
,ForwardingDeque
@GwtCompatible public abstract class ForwardingQueue<E extends @Nullable java.lang.Object> extends ForwardingCollection<E> implements java.util.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
ForwardingQueue
forward 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 overrideoffer
as well, either providing your own implementation, or delegating to the providedstandardOffer
method.default
method warning: This class does not forward calls todefault
methods. Instead, it inherits their default implementations. When those implementations invoke methods, they invoke methods on theForwardingQueue
.The
standard
methods 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 Summary
Constructors Modifier Constructor Description protected
ForwardingQueue()
Constructor for use by subclasses.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract java.util.Queue<E>
delegate()
Returns the backing delegate instance that methods are forwarded to.E
element()
boolean
offer(E o)
E
peek()
E
poll()
E
remove()
protected boolean
standardOffer(E e)
A sensible definition ofoffer(E)
in terms ofForwardingCollection.add(E)
.protected E
standardPeek()
protected E
standardPoll()
-
Methods inherited from class com.google.common.collect.ForwardingCollection
add, 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.ForwardingObject
toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Constructor Detail
-
ForwardingQueue
protected ForwardingQueue()
Constructor for use by subclasses.
-
-
Method Detail
-
delegate
protected abstract java.util.Queue<E> delegate()
Description copied from class:ForwardingObject
Returns 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:
delegate
in classForwardingCollection<E extends @Nullable java.lang.Object>
-
offer
@CanIgnoreReturnValue public boolean offer(E o)
-
poll
@CanIgnoreReturnValue @CheckForNull public E poll()
-
remove
@CanIgnoreReturnValue public E remove()
-
peek
@CheckForNull public E peek()
-
standardOffer
protected 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
-
standardPeek
@CheckForNull protected 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
-
standardPoll
@CheckForNull protected E standardPoll()
A sensible definition ofpoll()
in terms ofremove()
. If you overrideremove()
, you may wish to overridepoll()
to forward to this implementation.- Since:
- 7.0
-
-