Package | Description |
---|---|
org.springframework.retry.backoff |
Infrastructure implementations of retry backoff concerns.
|
org.springframework.retry.support |
Infrastructure implementations of retry support concerns.
|
Modifier and Type | Interface and Description |
---|---|
interface |
SleepingBackOffPolicy<T extends SleepingBackOffPolicy<T>>
A interface which can be mixed in by
BackOffPolicy s indicating that they sleep
when backing off. |
Modifier and Type | Class and Description |
---|---|
class |
ExponentialBackOffPolicy
Implementation of
BackOffPolicy that increases the back off period
for each retry attempt in a given set using the exponential function. |
class |
ExponentialRandomBackOffPolicy
Implementation of
ExponentialBackOffPolicy that
chooses a random multiple of the interval. |
class |
FixedBackOffPolicy
Implementation of
BackOffPolicy that pauses for a fixed period of time before
continuing. |
class |
UniformRandomBackOffPolicy
Implementation of
BackOffPolicy that pauses for a random period of
time before continuing. |
Constructor and Description |
---|
RetrySimulator(SleepingBackOffPolicy<?> backOffPolicy,
RetryPolicy retryPolicy) |
Copyright © 2014 SpringSource. All rights reserved.