public interface DelayPolicy
| Modifier and Type | Method and Description |
|---|---|
long |
getDelay(int numAttempts,
long lastDelay)
Gets the minimum amount of time that must elapse before the next retry
attempt.
|
java.lang.String |
toString()
Returns a human-readable description of this policy.
|
long getDelay(int numAttempts,
long lastDelay)
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==0java.lang.String toString()
toString in class java.lang.Object