Uses of Class
com.google.common.util.concurrent.internal.InternalFutureFailureAccess
-
Packages that use InternalFutureFailureAccess Package Description com.google.common.util.concurrent Concurrency utilities.com.google.common.util.concurrent.internal -
-
Uses of InternalFutureFailureAccess in com.google.common.util.concurrent
Subclasses of InternalFutureFailureAccess in com.google.common.util.concurrent Modifier and Type Class Description class
AbstractFuture<V extends @Nullable java.lang.Object>
An abstract implementation ofListenableFuture
, intended for advanced users only.class
FluentFuture<V extends @Nullable java.lang.Object>
AListenableFuture
that supports fluent chains of operations.class
SettableFuture<V extends @Nullable java.lang.Object>
AListenableFuture
whose result can be set by aSettableFuture.set(Object)
,SettableFuture.setException(Throwable)
orSettableFuture.setFuture(ListenableFuture)
call. -
Uses of InternalFutureFailureAccess in com.google.common.util.concurrent.internal
Methods in com.google.common.util.concurrent.internal with parameters of type InternalFutureFailureAccess Modifier and Type Method Description static java.lang.Throwable
InternalFutures. tryInternalFastPathGetFailure(InternalFutureFailureAccess future)
Usually returnsnull
but, if the givenFuture
has failed, may optionally return the cause of the failure.
-