Uses of Interface
com.google.common.util.concurrent.CheckedFuture

Packages that use CheckedFuture
com.google.common.util.concurrent Concurrency utilities. 
 

Uses of CheckedFuture in com.google.common.util.concurrent
 

Classes in com.google.common.util.concurrent that implement CheckedFuture
 class AbstractCheckedFuture<V,E extends Exception>
          A delegating wrapper around a ListenableFuture that adds support for the AbstractCheckedFuture.checkedGet() and AbstractCheckedFuture.checkedGet(long, TimeUnit) methods.
 

Methods in com.google.common.util.concurrent that return CheckedFuture
static
<T,E extends Exception>
CheckedFuture<T,E>
Futures.immediateCheckedFuture(T value)
          Creates a CheckedFuture which has its value set immediately upon construction.
static
<T,E extends Exception>
CheckedFuture<T,E>
Futures.immediateFailedCheckedFuture(E exception)
          Creates a CheckedFuture which has an exception set immediately upon construction.
static
<T,E extends Exception>
CheckedFuture<T,E>
Futures.makeChecked(Future<T> future, Function<Exception,E> mapper)
          Creates a CheckedFuture out of a normal Future and a Function that maps from Exception instances into the appropriate checked type.