Uses of Interface
org.springframework.retry.backoff.SleepingBackOffPolicy
Package
Description
Infrastructure implementations of retry backoff concerns.
Infrastructure implementations of retry support concerns.
-
Uses of SleepingBackOffPolicy in org.springframework.retry.backoff
Modifier and TypeInterfaceDescriptioninterface
SleepingBackOffPolicy<T extends SleepingBackOffPolicy<T>>
A interface which can be mixed in byBackOffPolicy
s indicating that they sleep when backing off.Modifier and TypeClassDescriptionclass
Implementation ofBackOffPolicy
that increases the back off period for each retry attempt in a given set up to a limit.class
Implementation ofExponentialBackOffPolicy
that chooses a random multiple of the interval that would come from a simple deterministic exponential.class
Implementation ofBackOffPolicy
that pauses for a fixed period of time before continuing.class
Implementation ofBackOffPolicy
that pauses for a random period of time before continuing. -
Uses of SleepingBackOffPolicy in org.springframework.retry.support
ModifierConstructorDescriptionRetrySimulator
(SleepingBackOffPolicy<?> backOffPolicy, RetryPolicy retryPolicy)