Class ForwardingFuture<V>

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

@Deprecated(since="2022-12-01") public abstract class ForwardingFuture<V> extends ForwardingObject implements Future<V>
Deprecated.
The Google Guava Core Libraries are deprecated and will not be part of the AEM SDK after April 2023
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