Uses of Class
com.google.common.util.concurrent.ForwardingFuture
-
Packages that use ForwardingFuture Package Description com.google.common.util.concurrent Concurrency utilities. -
-
Uses of ForwardingFuture in com.google.common.util.concurrent
Subclasses of ForwardingFuture in com.google.common.util.concurrent Modifier and Type Class Description class
AbstractCheckedFuture<V,X extends java.lang.Exception>
A delegating wrapper around aListenableFuture
that adds support for theAbstractCheckedFuture.checkedGet()
andAbstractCheckedFuture.checkedGet(long, TimeUnit)
methods.class
ForwardingCheckedFuture<V,X extends java.lang.Exception>
A future which forwards all its method calls to another future.static class
ForwardingCheckedFuture.SimpleForwardingCheckedFuture<V,X extends java.lang.Exception>
A simplified version ofForwardingCheckedFuture
where subclasses can pass in an already constructedCheckedFuture
as the delegate.static class
ForwardingFuture.SimpleForwardingFuture<V>
A simplified version ofForwardingFuture
where subclasses can pass in an already constructedFuture
as the delegate.class
ForwardingListenableFuture<V>
AListenableFuture
which forwards all its method calls to another future.static class
ForwardingListenableFuture.SimpleForwardingListenableFuture<V>
A simplified version ofForwardingListenableFuture
where subclasses can pass in an already constructedListenableFuture
as the delegate.
-