Uses of Interface
com.google.common.util.concurrent.FutureFallback
-
Packages that use FutureFallback Package Description com.google.common.util.concurrent Concurrency utilities. -
-
Uses of FutureFallback in com.google.common.util.concurrent
Methods in com.google.common.util.concurrent with parameters of type FutureFallback Modifier and Type Method Description static <V> ListenableFuture<V>
Futures. withFallback(ListenableFuture<? extends V> input, FutureFallback<? extends V> fallback)
Deprecated.UsecatchingAsync(input, Throwable.class, fallbackImplementedAsAnAsyncFunction)
, usually replacingThrowable.class
with the specific type you want to handle.static <V> ListenableFuture<V>
Futures. withFallback(ListenableFuture<? extends V> input, FutureFallback<? extends V> fallback, java.util.concurrent.Executor executor)
Deprecated.UsecatchingAsync(input, Throwable.class, fallbackImplementedAsAnAsyncFunction, executor)
, usually replacingThrowable.class
with the specific type you want to handle.
-