Class ForwardingFuture.SimpleForwardingFuture<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.ForwardingFuture.SimpleForwardingFuture<V>
 
 
 
- 
- All Implemented Interfaces:
- java.util.concurrent.Future<V>
 - Enclosing class:
- ForwardingFuture<V extends @Nullable java.lang.Object>
 
 public abstract static class ForwardingFuture.SimpleForwardingFuture<V extends @Nullable java.lang.Object> extends ForwardingFuture<V> A simplified version ofForwardingFuturewhere subclasses can pass in an already constructedFutureas the delegate.- Since:
- 9.0
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class com.google.common.util.concurrent.ForwardingFutureForwardingFuture.SimpleForwardingFuture<V extends @Nullable java.lang.Object>
 
- 
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedSimpleForwardingFuture(java.util.concurrent.Future<V> delegate)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.util.concurrent.Future<V>delegate()Returns the backing delegate instance that methods are forwarded to.- 
Methods inherited from class com.google.common.util.concurrent.ForwardingFuturecancel, get, get, isCancelled, isDone
 - 
Methods inherited from class com.google.common.collect.ForwardingObjecttoString
 
- 
 
- 
- 
- 
Constructor Detail- 
SimpleForwardingFutureprotected SimpleForwardingFuture(java.util.concurrent.Future<V> delegate) 
 
- 
 - 
Method Detail- 
delegateprotected final java.util.concurrent.Future<V> 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- ForwardingFuture<V extends @Nullable java.lang.Object>
 
 
- 
 
-