Optional
A backoff function receives the current retry cound and returns a number in milliseconds to wait before retrying.
Math.exp(retryCount) * 50 Copy
Math.exp(retryCount) * 50
The number of retries to attempt before giving up.
5 Copy
5
A backoff function receives the current retry cound and returns a number in milliseconds to wait before retrying.