| AttemptFailureException |
The AttemptFailureException indicates that the RetryPolicy.attempt(Callable) failed because of
either operation throwing an exception or running out of attempts.
|
| AttemptsExceededException |
The AttemptsExceededException indicates that the operation did not succeed within maximum number of
attempts.
|
| BaseRetryPolicy |
|
| ExponentialBackoffRetryPolicy |
Retry policy with exponential backoff delay between attempts.
|
| FixedDelayRetryPolicy |
Delay policy with fixed delay between attempts.
|
| NoDelayRetryPolicy |
Retry policy without delay between attempts.
|
| RandomDelayRetryPolicy |
Delay policy with random delay between attempts.
|
| RetriableOperationException |
The RetriableOperationException indicates that the retriable operation threw an exception.
|
| RetryPolicy |
Retry policy, encapsulating the logic needed to retry an operation until it succeeds.
|