Class ForwardingFuture<V extends @Nullable java.lang.Object>
- java.lang.Object
-
- com.google.common.collect.ForwardingObject
-
- com.google.common.util.concurrent.ForwardingFuture<V>
-
- All Implemented Interfaces:
java.util.concurrent.Future<V>
- Direct Known Subclasses:
ForwardingFuture.SimpleForwardingFuture
,ForwardingListenableFuture
@GwtCompatible public abstract class ForwardingFuture<V extends @Nullable java.lang.Object> extends ForwardingObject implements java.util.concurrent.Future<V>
AFuture
which forwards all its method calls to another future. Subclasses should override one or more methods to modify the behavior of the backing future as desired per the decorator pattern.Most subclasses can just use
ForwardingFuture.SimpleForwardingFuture
.- Since:
- 1.0
- Author:
- Sven Mawson
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ForwardingFuture.SimpleForwardingFuture<V extends @Nullable java.lang.Object>
A simplified version ofForwardingFuture
where subclasses can pass in an already constructedFuture
as the delegate.
-
Constructor Summary
Constructors Modifier Constructor Description protected
ForwardingFuture()
Constructor for use by subclasses.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
cancel(boolean mayInterruptIfRunning)
protected abstract java.util.concurrent.Future<? extends V>
delegate()
Returns the backing delegate instance that methods are forwarded to.V
get()
V
get(long timeout, java.util.concurrent.TimeUnit unit)
boolean
isCancelled()
boolean
isDone()
-
Methods inherited from class com.google.common.collect.ForwardingObject
toString
-
-
-
-
Constructor Detail
-
ForwardingFuture
protected ForwardingFuture()
Constructor for use by subclasses.
-
-
Method Detail
-
delegate
protected abstract java.util.concurrent.Future<? extends 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 classForwardingObject
-
cancel
@CanIgnoreReturnValue public boolean cancel(boolean mayInterruptIfRunning)
-
isCancelled
public boolean isCancelled()
-
isDone
public boolean isDone()
-
get
@CanIgnoreReturnValue public V get() throws java.lang.InterruptedException, java.util.concurrent.ExecutionException
-
get
@CanIgnoreReturnValue public V get(long timeout, java.util.concurrent.TimeUnit unit) throws java.lang.InterruptedException, java.util.concurrent.ExecutionException, java.util.concurrent.TimeoutException
-
-