| Package | Description |
|---|---|
| org.springframework.retry.annotation | |
| org.springframework.retry.backoff |
Infrastructure implementations of retry backoff concerns.
|
| org.springframework.retry.support |
Infrastructure implementations of retry support concerns.
|
| Modifier and Type | Field and Description |
|---|---|
private Sleeper |
RetryConfiguration.sleeper |
private Sleeper |
AnnotationAwareRetryOperationsInterceptor.sleeper |
| Modifier and Type | Method and Description |
|---|---|
void |
AnnotationAwareRetryOperationsInterceptor.setSleeper(Sleeper sleeper) |
| Modifier and Type | Class and Description |
|---|---|
class |
ObjectWaitSleeper
Deprecated.
in favor of
ThreadWaitSleeper |
class |
ThreadWaitSleeper
Simple
Sleeper implementation that just blocks the current Thread with sleep period. |
| Modifier and Type | Field and Description |
|---|---|
private Sleeper |
FixedBackOffPolicy.sleeper |
private Sleeper |
UniformRandomBackOffPolicy.sleeper |
private Sleeper |
ExponentialBackOffPolicy.sleeper |
| Modifier and Type | Method and Description |
|---|---|
void |
FixedBackOffPolicy.setSleeper(Sleeper sleeper)
Public setter for the
Sleeper strategy. |
void |
UniformRandomBackOffPolicy.setSleeper(Sleeper sleeper)
Public setter for the
Sleeper strategy. |
void |
ExponentialBackOffPolicy.setSleeper(Sleeper sleeper)
Public setter for the
Sleeper strategy. |
T |
SleepingBackOffPolicy.withSleeper(Sleeper sleeper)
Clone the policy and return a new policy which uses the passed sleeper.
|
FixedBackOffPolicy |
FixedBackOffPolicy.withSleeper(Sleeper sleeper) |
UniformRandomBackOffPolicy |
UniformRandomBackOffPolicy.withSleeper(Sleeper sleeper) |
ExponentialBackOffPolicy |
ExponentialBackOffPolicy.withSleeper(Sleeper sleeper) |
| Modifier and Type | Class and Description |
|---|---|
(package private) static class |
RetrySimulator.StealingSleeper |