|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.alarmpoint.integrationagent.exceptions.retriable.FixedDelayPolicy
public class FixedDelayPolicy
A policy that specifies a fixed delay between retry attempts.
Constructor Summary | |
---|---|
FixedDelayPolicy(long delayMillis)
Default constructor. |
Method Summary | |
---|---|
long |
getDelay(int numAttempts,
long lastDelay)
Gets the minimum amount of time that must elapse before the next retry attempt. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public FixedDelayPolicy(long delayMillis)
delayMillis
- -
the miminum delay (in milliseconds) between each retry
attempt; must be >= 0 with 0 indicating no delayMethod Detail |
---|
public long getDelay(int numAttempts, long lastDelay)
getDelay
in interface DelayPolicy
numAttempts
- -
the number of previous attempts (including first attempt and
retries); assumed to be >= 1lastDelay
- -
the delay (in milliseconds) returned by the previous call to
this method (i.e., with numAttempts-1
); -1 if
not previously code (i.e., when numAttempts==0
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |