Wait a constant amount of time between retries
Simple form of exponential backoff that is simply (tryCount * tryCount * baseAmount)
Simple form of exponential backoff that is simply (tryCount * tryCount * baseAmount)
For a base amount of 1 second you get: retry 1 - 1 Second retry 2 - 4 Seconds retry 3 - 9 seconds retry 4 - 16 seconds
For a base amount of 500 milliseconds you get: retry 1 - 500 milliseconds retry 2 - 2,000 milliseconds retry 3 - 4,500 milliseconds retry 4 - 8,000 milliseconds
Don't wait between retries