Class ForwardingFuture<V extends @Nullable Object>

java.lang.Object
com.google.common.collect.ForwardingObject
com.google.common.util.concurrent.ForwardingFuture<V>
All Implemented Interfaces:
Future<V>
Direct Known Subclasses:
ForwardingFuture.SimpleForwardingFuture, ForwardingListenableFuture

@GwtCompatible public abstract class ForwardingFuture<V extends @Nullable Object> extends ForwardingObject implements Future<V>
A Future 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