| Package | Description |
|---|---|
| net.jodah.recurrent |
| Modifier and Type | Method and Description |
|---|---|
static <T> RecurrentFuture<T> |
Recurrent.get(Callable<T> callable,
RetryPolicy retryPolicy,
ScheduledExecutorService executor)
Invokes the
callable, scheduling retries with the executor according to the retryPolicy. |
static <T> RecurrentFuture<T> |
Recurrent.get(Callable<T> callable,
RetryPolicy retryPolicy,
Scheduler scheduler)
Invokes the
callable, scheduling retries with the scheduler according to the retryPolicy. |
static <T> RecurrentFuture<T> |
Recurrent.get(ContextualCallable<T> callable,
RetryPolicy retryPolicy,
ScheduledExecutorService executor)
Invokes the
callable, scheduling retries with the executor according to the retryPolicy. |
static <T> RecurrentFuture<T> |
Recurrent.get(ContextualCallable<T> callable,
RetryPolicy retryPolicy,
Scheduler scheduler)
Invokes the
callable, scheduling retries with the scheduler according to the retryPolicy. |
static RecurrentFuture<?> |
Recurrent.run(ContextualRunnable runnable,
RetryPolicy retryPolicy,
ScheduledExecutorService executor)
Invokes the
runnable, scheduling retries with the executor according to the retryPolicy. |
static RecurrentFuture<?> |
Recurrent.run(ContextualRunnable runnable,
RetryPolicy retryPolicy,
Scheduler scheduler)
Invokes the
runnable, scheduling retries with the scheduler according to the retryPolicy. |
static RecurrentFuture<?> |
Recurrent.run(Runnable runnable,
RetryPolicy retryPolicy,
ScheduledExecutorService executor)
Invokes the
runnable, scheduling retries with the executor according to the retryPolicy. |
static RecurrentFuture<?> |
Recurrent.run(Runnable runnable,
RetryPolicy retryPolicy,
Scheduler scheduler)
Invokes the
runnable, scheduling retries with the scheduler according to the retryPolicy. |
RecurrentFuture<T> |
RecurrentFuture.whenComplete(CompletionListener<T> completionListener) |
RecurrentFuture<T> |
RecurrentFuture.whenCompleteAsync(CompletionListener<T> completionListener) |
RecurrentFuture<T> |
RecurrentFuture.whenCompleteAsync(CompletionListener<T> completionListener,
ExecutorService executor) |
RecurrentFuture<T> |
RecurrentFuture.whenFailure(FailureListener failureListener) |
RecurrentFuture<T> |
RecurrentFuture.whenFailureAsync(FailureListener failureListener) |
RecurrentFuture<T> |
RecurrentFuture.whenFailureAsync(FailureListener failureListener,
ExecutorService executor) |
RecurrentFuture<T> |
RecurrentFuture.whenSuccess(SuccessListener<T> successListener) |
RecurrentFuture<T> |
RecurrentFuture.whenSuccessAsync(SuccessListener<T> successListener) |
RecurrentFuture<T> |
RecurrentFuture.whenSuccessAsync(SuccessListener<T> successListener,
ExecutorService executor) |
Copyright © 2015. All Rights Reserved.