|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RetryPolicy | |
---|---|
org.springframework.batch.core.step.item | Specific implementations of step concerns for item-oriented approach. |
org.springframework.batch.retry.interceptor | Infrastructure implementations of retry aop concerns. |
org.springframework.batch.retry.policy | Infrastructure implementations of retry policy concerns. |
org.springframework.batch.retry.support | Infrastructure implementations of retry support concerns. |
Uses of RetryPolicy in org.springframework.batch.core.step.item |
---|
Methods in org.springframework.batch.core.step.item with parameters of type RetryPolicy | |
---|---|
void |
SkipLimitStepFactoryBean.setRetryPolicy(RetryPolicy retryPolicy)
Setter for the retry policy. |
Constructors in org.springframework.batch.core.step.item with parameters of type RetryPolicy | |
---|---|
SimpleRetryExceptionHandler(RetryPolicy retryPolicy,
ExceptionHandler exceptionHandler,
Class[] classes)
|
Uses of RetryPolicy in org.springframework.batch.retry.interceptor |
---|
Methods in org.springframework.batch.retry.interceptor with parameters of type RetryPolicy | |
---|---|
void |
StatefulRetryOperationsInterceptor.setRetryPolicy(RetryPolicy retryPolicy)
Public setter for the retryPolicy. |
Uses of RetryPolicy in org.springframework.batch.retry.policy |
---|
Classes in org.springframework.batch.retry.policy that implement RetryPolicy | |
---|---|
class |
AbstractStatefulRetryPolicy
Base class for stateful retry policies: those that operate in the context of a callback that is called once per retry execution (usually to enforce that it is only called once per transaction). |
class |
AbstractStatelessRetryPolicy
Base class for "normal" retry policies: those that operate in the context of a callback that is called repeatedly in a loop until it succeeds, or the policy decides to terminate. |
class |
AlwaysRetryPolicy
A RetryPolicy that always permits a retry. |
class |
CompositeRetryPolicy
A RetryPolicy that composes a list of other policies and delegates
calls to them in order. |
class |
ExceptionClassifierRetryPolicy
A RetryPolicy that dynamically adapts to one of a set of injected
policies according to the value of the latest exception. |
class |
NeverRetryPolicy
A RetryPolicy that allows the first attempt but never permits a
retry. |
class |
RecoveryCallbackRetryPolicy
A RetryPolicy that detects an RecoveryRetryCallback when it
opens a new context, and uses it to make sure the item is in place for later
decisions about how to retry or backoff. |
class |
SimpleRetryPolicy
Simple retry policy that retries a fixed number of times for a set of named exceptions (and subclasses). |
class |
TimeoutRetryPolicy
A RetryPolicy that allows a retry only if it hasn't timed out. |
Methods in org.springframework.batch.retry.policy with parameters of type RetryPolicy | |
---|---|
void |
RecoveryCallbackRetryPolicy.setDelegate(RetryPolicy delegate)
Setter for delegate. |
void |
CompositeRetryPolicy.setPolicies(RetryPolicy[] policies)
Setter for policies. |
Constructors in org.springframework.batch.retry.policy with parameters of type RetryPolicy | |
---|---|
RecoveryCallbackRetryPolicy(RetryPolicy delegate)
Convenience constructor to set delegate on init. |
Uses of RetryPolicy in org.springframework.batch.retry.support |
---|
Methods in org.springframework.batch.retry.support with parameters of type RetryPolicy | |
---|---|
void |
RetryTemplate.setRetryPolicy(RetryPolicy retryPolicy)
Setter for RetryPolicy . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |