|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RetryCallback | |
---|---|
org.springframework.batch.core.step.item | Specific implementations of step concerns for item-oriented approach. |
org.springframework.batch.retry | Infrastructure implementations of retry concerns. |
org.springframework.batch.retry.listener | Infrastructure implementations of retry interceptor concerns. |
org.springframework.batch.retry.support | Infrastructure implementations of retry support concerns. |
Uses of RetryCallback in org.springframework.batch.core.step.item |
---|
Methods in org.springframework.batch.core.step.item with parameters of type RetryCallback | ||
---|---|---|
|
SimpleRetryExceptionHandler.close(RetryContext context,
RetryCallback<T> callback,
Throwable throwable)
If retry is exhausted set up some state in the context that can be used to signal that the exception should be handled. |
|
|
BatchRetryTemplate.execute(RetryCallback<T> retryCallback)
|
|
|
BatchRetryTemplate.execute(RetryCallback<T> retryCallback,
Collection<RetryState> states)
|
|
|
BatchRetryTemplate.execute(RetryCallback<T> retryCallback,
RecoveryCallback<T> recoveryCallback)
|
|
|
BatchRetryTemplate.execute(RetryCallback<T> retryCallback,
RecoveryCallback<T> recoveryCallback,
Collection<RetryState> states)
|
|
|
BatchRetryTemplate.execute(RetryCallback<T> retryCallback,
RecoveryCallback<T> recoveryCallback,
RetryState retryState)
|
|
|
BatchRetryTemplate.execute(RetryCallback<T> retryCallback,
RetryState retryState)
|
Uses of RetryCallback in org.springframework.batch.retry |
---|
Methods in org.springframework.batch.retry with parameters of type RetryCallback | ||
---|---|---|
|
RetryListener.close(RetryContext context,
RetryCallback<T> callback,
Throwable throwable)
Called after the final attempt (successful or not). |
|
|
RetryOperations.execute(RetryCallback<T> retryCallback)
Execute the supplied RetryCallback with the configured retry
semantics. |
|
|
RetryOperations.execute(RetryCallback<T> retryCallback,
RecoveryCallback<T> recoveryCallback)
Execute the supplied RetryCallback with a fallback on exhausted
retry to the RecoveryCallback . |
|
|
RetryOperations.execute(RetryCallback<T> retryCallback,
RecoveryCallback<T> recoveryCallback,
RetryState retryState)
A stateful retry with a recovery path. |
|
|
RetryOperations.execute(RetryCallback<T> retryCallback,
RetryState retryState)
A simple stateful retry. |
|
|
RetryListener.onError(RetryContext context,
RetryCallback<T> callback,
Throwable throwable)
Called after every unsuccessful attempt at a retry. |
|
|
RetryListener.open(RetryContext context,
RetryCallback<T> callback)
Called before the first attempt in a retry. |
Uses of RetryCallback in org.springframework.batch.retry.listener |
---|
Methods in org.springframework.batch.retry.listener with parameters of type RetryCallback | ||
---|---|---|
|
RetryListenerSupport.close(RetryContext context,
RetryCallback<T> callback,
Throwable throwable)
|
|
|
RetryListenerSupport.onError(RetryContext context,
RetryCallback<T> callback,
Throwable throwable)
|
|
|
RetryListenerSupport.open(RetryContext context,
RetryCallback<T> callback)
|
Uses of RetryCallback in org.springframework.batch.retry.support |
---|
Methods in org.springframework.batch.retry.support with parameters of type RetryCallback | ||
---|---|---|
protected
|
RetryTemplate.doExecute(RetryCallback<T> retryCallback,
RecoveryCallback<T> recoveryCallback,
RetryState state)
Execute the callback once if the policy dictates that we can, otherwise execute the recovery callback. |
|
|
RetryTemplate.execute(RetryCallback<T> retryCallback)
Keep executing the callback until it either succeeds or the policy dictates that we stop, in which case the most recent exception thrown by the callback will be rethrown. |
|
|
RetryTemplate.execute(RetryCallback<T> retryCallback,
RecoveryCallback<T> recoveryCallback)
Keep executing the callback until it either succeeds or the policy dictates that we stop, in which case the recovery callback will be executed. |
|
|
RetryTemplate.execute(RetryCallback<T> retryCallback,
RecoveryCallback<T> recoveryCallback,
RetryState retryState)
Execute the callback once if the policy dictates that we can, re-throwing any exception encountered so that clients can re-present the same task later. |
|
|
RetryTemplate.execute(RetryCallback<T> retryCallback,
RetryState retryState)
Execute the callback once if the policy dictates that we can, re-throwing any exception encountered so that clients can re-present the same task later. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |