|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.springframework.batch.retry.policy.AbstractStatelessRetryPolicy
org.springframework.batch.retry.policy.NeverRetryPolicy
public class NeverRetryPolicy
A RetryPolicy that allows the first attempt but never permits a
retry. Also be used as a base class for other policies, e.g. for test
purposes as a stub.
| Constructor Summary | |
|---|---|
NeverRetryPolicy()
|
|
| Method Summary | |
|---|---|
boolean |
canRetry(RetryContext context)
Returns false after the first exception. |
void |
close(RetryContext context)
Do nothing. |
RetryContext |
open(RetryCallback callback,
RetryContext parent)
Return a context that can respond to early termination requests, but does nothing else. |
void |
registerThrowable(RetryContext context,
Throwable throwable)
Do nothing. |
| Methods inherited from class org.springframework.batch.retry.policy.AbstractStatelessRetryPolicy |
|---|
handleRetryExhausted, shouldRethrow |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public NeverRetryPolicy()
| Method Detail |
|---|
public boolean canRetry(RetryContext context)
context - the current retry status
RetryPolicy.canRetry(org.springframework.batch.retry.RetryContext)public void close(RetryContext context)
context - a retry status created by the RetryPolicy.open(RetryCallback, RetryContext)
method of this manager.RetryPolicy.close(org.springframework.batch.retry.RetryContext)
public RetryContext open(RetryCallback callback,
RetryContext parent)
callback - the RetryCallback that will execute the unit of
work for this retry.parent - the parent context if we are in a nested retry.
RetryContext object specific to this manager.RetryPolicy.open(org.springframework.batch.retry.RetryCallback, RetryContext)
public void registerThrowable(RetryContext context,
Throwable throwable)
throws TerminatedRetryException
context - the current status object.
TerminatedRetryException - if the status is set to terminate only.RetryPolicy.registerThrowable(org.springframework.batch.retry.RetryContext,
java.lang.Throwable)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||