Uses of Interface
org.springframework.batch.retry.RecoveryCallback

Packages that use RecoveryCallback
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.support Infrastructure implementations of retry support concerns. 
 

Uses of RecoveryCallback in org.springframework.batch.core.step.item
 

Methods in org.springframework.batch.core.step.item with parameters of type RecoveryCallback
<T> T
BatchRetryTemplate.execute(RetryCallback<T> retryCallback, RecoveryCallback<T> recoveryCallback)
           
<T> T
BatchRetryTemplate.execute(RetryCallback<T> retryCallback, RecoveryCallback<T> recoveryCallback, Collection<RetryState> states)
           
<T> T
BatchRetryTemplate.execute(RetryCallback<T> retryCallback, RecoveryCallback<T> recoveryCallback, RetryState retryState)
           
 

Uses of RecoveryCallback in org.springframework.batch.retry
 

Methods in org.springframework.batch.retry with parameters of type RecoveryCallback
<T> T
RetryOperations.execute(RetryCallback<T> retryCallback, RecoveryCallback<T> recoveryCallback)
          Execute the supplied RetryCallback with a fallback on exhausted retry to the RecoveryCallback.
<T> T
RetryOperations.execute(RetryCallback<T> retryCallback, RecoveryCallback<T> recoveryCallback, RetryState retryState)
          A stateful retry with a recovery path.
 

Uses of RecoveryCallback in org.springframework.batch.retry.support
 

Methods in org.springframework.batch.retry.support with parameters of type RecoveryCallback
protected
<T> T
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.
<T> T
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.
<T> T
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.
protected
<T> T
RetryTemplate.handleRetryExhausted(RecoveryCallback<T> recoveryCallback, RetryContext context, RetryState state)
          Actions to take after final attempt has failed.
 



Copyright © 2013 SpringSource. All Rights Reserved.