Retry policy: exponential backoff This policy allow context to retry waiting exponential duration. Interval duration is: initialDelay ^ (multiplier - attemptCount)
initialDelay ^ (multiplier - attemptCount)
Private
retrun true if attempts count is less than max attempts
Return next delay milliseconds
Add an error to the list not retrying on it.
Return true if a passed error should not be retryed.
Static
Creates a new Simple Retry policy with default settings
Generated using TypeDoc
Retry policy: exponential backoff This policy allow context to retry waiting exponential duration. Interval duration is:
initialDelay ^ (multiplier - attemptCount)