All Classes and Interfaces
Class
Description
Backend retry manager.
Max Retries reached out exception , to be thrown on result predicate check exceed the max
configured retries
A
MaxRetriesExceededException signals that a Retry has exhausted all attempts,
and the result is still not satisfactory to RetryConfig.getResultPredicate()A Retry instance is thread-safe can be used to decorate multiple requests.
the retry context which will be used during the retry iteration to decide what can be done on
error , result, on runtime error
An EventPublisher which subscribes to the reactive stream of RetryEvents and can be used to
register event consumers.
An event which is created by Retry.
Event types which are created by a Retry.
A RetryEvent which informs that a call has been retried, but still failed, such that the the
maximum number of attempts has been reached.
A RetryEvent which informs that an error has been ignored.
A RetryEvent which informs that a call failed, and is to be retried.
A RetryEvent which informs that a call has been retried and a retry was successful.
The
RetryRegistry is a factory to create Retry instances which stores all Retry instances
in a registry.