Class ForwardingListenableFuture.SimpleForwardingListenableFuture<V extends @Nullable java.lang.Object>
- java.lang.Object
-
- com.google.common.collect.ForwardingObject
-
- com.google.common.util.concurrent.ForwardingFuture<V>
-
- com.google.common.util.concurrent.ForwardingListenableFuture<V>
-
- com.google.common.util.concurrent.ForwardingListenableFuture.SimpleForwardingListenableFuture<V>
-
- All Implemented Interfaces:
ListenableFuture<V>
,java.util.concurrent.Future<V>
- Enclosing class:
- ForwardingListenableFuture<V extends @Nullable java.lang.Object>
public abstract static class ForwardingListenableFuture.SimpleForwardingListenableFuture<V extends @Nullable java.lang.Object> extends ForwardingListenableFuture<V>
A simplified version ofForwardingListenableFuture
where subclasses can pass in an already constructedListenableFuture
as the delegate.- Since:
- 9.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.common.util.concurrent.ForwardingListenableFuture
ForwardingListenableFuture.SimpleForwardingListenableFuture<V extends @Nullable java.lang.Object>
-
Nested classes/interfaces inherited from class com.google.common.util.concurrent.ForwardingFuture
ForwardingFuture.SimpleForwardingFuture<V extends @Nullable java.lang.Object>
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SimpleForwardingListenableFuture(ListenableFuture<V> delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ListenableFuture<V>
delegate()
Returns the backing delegate instance that methods are forwarded to.-
Methods inherited from class com.google.common.util.concurrent.ForwardingListenableFuture
addListener
-
Methods inherited from class com.google.common.util.concurrent.ForwardingFuture
cancel, get, get, isCancelled, isDone
-
Methods inherited from class com.google.common.collect.ForwardingObject
toString
-
-
-
-
Constructor Detail
-
SimpleForwardingListenableFuture
protected SimpleForwardingListenableFuture(ListenableFuture<V> delegate)
-
-
Method Detail
-
delegate
protected final ListenableFuture<V> 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 classForwardingListenableFuture<V extends @Nullable java.lang.Object>
-
-