The base delay before the first retry, in milliseconds.
OptionaljitterWhether to apply full jitter to computed backoff delays. Defaults to true.
The maximum delay between retries, in milliseconds.
The maximum number of retries after the initial attempt.
Whether network and timeout failures trigger a retry.
HTTP status codes that trigger a retry.
Retry policy for transient transport failures.
Delays between retries use exponential backoff with full jitter by default: each wait is a random value between
0and the computed exponential cap so concurrent clients do not synchronize their retries (thundering herd). Server-dictatedRetry-Afterdelays are never jittered.See
RequestOptions.retry