|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.alarmpoint.integrationagent.exceptions.retriable.AbstractRetryPolicy
com.alarmpoint.integrationagent.exceptions.retriable.MaxAttemptRetryPolicy
public class MaxAttemptRetryPolicy
A retry policy that enforces a maximum number of retry attempts and a customizable delay between attempts.
Constructor Summary | |
---|---|
MaxAttemptRetryPolicy(int maxAttempts,
DelayPolicy delayPolicy)
Default constructor. |
Method Summary | |
---|---|
boolean |
isRetriable(int numAttempts,
long firstAttemptTimestamp)
Determines whether a retry should be attempted. |
Methods inherited from class com.alarmpoint.integrationagent.exceptions.retriable.AbstractRetryPolicy |
---|
getDelay |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MaxAttemptRetryPolicy(int maxAttempts, DelayPolicy delayPolicy)
maxAttempts
- -
the maximum number of attempts (first attempt and retries)
that will be allowed; must be >= 1delayPolicy
- -
the policy for computing delays between attempts; must be
non-nullMethod Detail |
---|
public boolean isRetriable(int numAttempts, long firstAttemptTimestamp)
numAttempts
- -
the number of previous attempts (including first attempt and
previous retries); assumed to be >= 1firstAttemptTimestamp
- -
the timestamp (milliseconds since epoch) of the first attempt
to process the message; may be < 0 if information not
available
true
if a retry should be attempted; otherwise,
false
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |