|
||||||||||
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.callback | Infrastructure implementations of retry callback concerns. |
org.springframework.batch.retry.listener | Infrastructure implementations of retry interceptor 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 RetryCallback in org.springframework.batch.core.step.item |
---|
Methods in org.springframework.batch.core.step.item with parameters of type RetryCallback | |
---|---|
void |
SimpleRetryExceptionHandler.close(RetryContext context,
RetryCallback callback,
Throwable throwable)
|
Uses of RetryCallback in org.springframework.batch.retry |
---|
Methods in org.springframework.batch.retry with parameters of type RetryCallback | |
---|---|
void |
RetryListener.close(RetryContext context,
RetryCallback callback,
Throwable throwable)
Called after the final attempt (successful or not). |
Object |
RetryOperations.execute(RetryCallback retryCallback)
Execute the supplied RetryCallback with the configured retry
semantics. |
void |
RetryListener.onError(RetryContext context,
RetryCallback callback,
Throwable throwable)
Called after every unsuccessful attempt at a retry. |
RetryContext |
RetryPolicy.open(RetryCallback callback,
RetryContext parent)
Acquire resources needed for the retry operation. |
boolean |
RetryListener.open(RetryContext context,
RetryCallback callback)
Called before the first attempt in a retry. |
Uses of RetryCallback in org.springframework.batch.retry.callback |
---|
Classes in org.springframework.batch.retry.callback that implement RetryCallback | |
---|---|
class |
RecoveryRetryCallback
A RetryCallback that knows about and caches an item, and attempts to
process it using a delegate RetryCallback . |
Constructors in org.springframework.batch.retry.callback with parameters of type RetryCallback | |
---|---|
RecoveryRetryCallback(Object item,
RetryCallback callback)
Constructor with mandatory properties. |
|
RecoveryRetryCallback(Object item,
RetryCallback callback,
Object key)
Constructor with mandatory properties. |
Uses of RetryCallback in org.springframework.batch.retry.listener |
---|
Methods in org.springframework.batch.retry.listener with parameters of type RetryCallback | |
---|---|
void |
RetryListenerSupport.close(RetryContext context,
RetryCallback callback,
Throwable throwable)
|
void |
RetryListenerSupport.onError(RetryContext context,
RetryCallback callback,
Throwable throwable)
|
boolean |
RetryListenerSupport.open(RetryContext context,
RetryCallback callback)
|
Uses of RetryCallback in org.springframework.batch.retry.policy |
---|
Methods in org.springframework.batch.retry.policy with parameters of type RetryCallback | |
---|---|
RetryContext |
TimeoutRetryPolicy.open(RetryCallback callback,
RetryContext parent)
|
RetryContext |
SimpleRetryPolicy.open(RetryCallback callback,
RetryContext parent)
Get a status object that can be used to track the current operation according to this policy. |
RetryContext |
CompositeRetryPolicy.open(RetryCallback callback,
RetryContext parent)
Creates a new context that copies the existing policies and keeps a list of the contexts from each one. |
RetryContext |
NeverRetryPolicy.open(RetryCallback callback,
RetryContext parent)
Return a context that can respond to early termination requests, but does nothing else. |
RetryContext |
ExceptionClassifierRetryPolicy.open(RetryCallback callback,
RetryContext parent)
Create an active context that proxies a retry policy by chosing a target from the policy map. |
RetryContext |
RecoveryCallbackRetryPolicy.open(RetryCallback callback,
RetryContext parent)
Create a new context for the execution of the callback, which must be an instance of RecoveryRetryCallback . |
Uses of RetryCallback in org.springframework.batch.retry.support |
---|
Methods in org.springframework.batch.retry.support with parameters of type RetryCallback | |
---|---|
Object |
RetryTemplate.execute(RetryCallback callback)
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |