<C extends @Nullable Object> ListenableFuture<C> |
Futures.FutureCombiner.callAsync(AsyncCallable<C> combiner,
Executor executor) |
Creates the ListenableFuture which will return the result of calling call() in combiner when all futures complete, using the specified
executor .
|
static <O extends @Nullable Object> ListenableFuture<O> |
Futures.scheduleAsync(AsyncCallable<O> callable,
long delay,
TimeUnit timeUnit,
ScheduledExecutorService executorService) |
Schedules callable on the specified executor , returning a Future .
|
static <O extends @Nullable Object> ListenableFuture<O> |
Futures.scheduleAsync(AsyncCallable<O> callable,
Duration delay,
ScheduledExecutorService executorService) |
Schedules callable on the specified executor , returning a Future .
|
<T extends @Nullable Object> ListenableFuture<T> |
ExecutionSequencer.submitAsync(AsyncCallable<T> callable,
Executor executor) |
Enqueues a task to run when the previous task (if any) completes.
|
static <O extends @Nullable Object> ListenableFuture<O> |
Futures.submitAsync(AsyncCallable<O> callable,
Executor executor) |
Executes callable on the specified executor , returning a Future .
|