Package | Description |
---|---|
org.springframework.batch.core.step.item |
Specific implementations of step concerns for item-oriented approach.
|
org.springframework.batch.retry.backoff |
Infrastructure implementations of retry backoff concerns.
|
org.springframework.batch.retry.support |
Infrastructure implementations of retry support concerns.
|
Modifier and Type | Method and Description |
---|---|
void |
BatchRetryTemplate.setBackOffPolicy(BackOffPolicy backOffPolicy) |
void |
FaultTolerantStepFactoryBean.setBackOffPolicy(BackOffPolicy backOffPolicy)
Public setter for the
BackOffPolicy . |
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 |
FixedBackOffPolicy
Implementation of
BackOffPolicy that pauses for a fixed period of
time before continuing. |
class |
NoBackOffPolicy
Implementation of
BackOffPolicy that performs a no-op and as such all
retry operation in a given set proceed one after the other with no pause. |
class |
StatelessBackOffPolicy
Simple base class for
BackOffPolicy implementations that maintain no
state across invocations. |
Modifier and Type | Method and Description |
---|---|
void |
RetryTemplate.setBackOffPolicy(BackOffPolicy backOffPolicy)
Setter for
BackOffPolicy . |
Copyright © 2013 SpringSource. All rights reserved.