Package | Description |
---|---|
org.springframework.retry |
Infrastructure implementations of retry concerns.
|
org.springframework.retry.support |
Infrastructure implementations of retry support concerns.
|
Modifier and Type | Method and Description |
---|---|
<T,E extends Throwable> |
RetryOperations.execute(RetryCallback<T,E> retryCallback,
RetryState retryState)
A simple stateful retry.
|
Modifier and Type | Method and Description |
---|---|
protected <T,E extends Throwable> |
RetryTemplate.doExecute(RetryCallback<T,E> retryCallback,
RecoveryCallback<T> recoveryCallback,
RetryState state)
Execute the callback once if the policy dictates that we can, otherwise execute the
recovery callback.
|
<T,E extends Throwable> |
RetryTemplate.execute(RetryCallback<T,E> 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.
|
<T,E extends Throwable> |
RetryTemplate.execute(RetryCallback<T,E> 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.
|
Copyright © 2018 SpringSource. All rights reserved.