interface RetryOptions
Options for retry.
Properties
optional
multiplier: number = 2How much to backoff after each retry.
optional
maxTimeout: number = 60000The maximum milliseconds between attempts.
optional
maxAttempts: number = 5The maximum amount of attempts until failure.
optional
minTimeout: number = 1000The initial and minimum amount of milliseconds between attempts.