-
Deprecated.
Returns a retry function that retries errors resulting from all exceptions except
the specified non-retriable exceptions, once.
Deprecated.
Returns a retry function that retries any exception, once.
Deprecated.
Returns a retry function that retries errors resulting from any of the
specified exceptions, once.
Deprecated.
Returns a retry function with backoff delay.
Deprecated.
Returns a retry function that invokes the provided onRetry
callback before every retry.
Deprecated.
Returns a retry function with exponential backoff delay.
Deprecated.
Returns a retry function with full jitter backoff strategy.
Deprecated.
Returns a retry function with fixed backoff delay.
Deprecated.
Returns a retry function that applies jitter to the backoff delay.
Deprecated.
Returns a retry function with no backoff delay.
Deprecated.
Retry function that retries only if the predicate returns true, with no limit to
the number of attempts.
Deprecated.
Returns a retry function with random de-correlated jitter backoff strategy.
DefaultRetry.retryMax(long maxIterations)
Deprecated.
Retry function that retries n times.
Deprecated.
Retry function that retries once.
Deprecated.
Returns a retry function with timeout.
Deprecated.
Returns a retry function with an application context that may be
used to perform any rollbacks before a retry.
Deprecated.
Returns a retry function that uses the scheduler provided for
backoff delays.
RetrySpec
andRetryBackoffSpec
instead.