Created
October 12, 2016 13:10
-
-
Save simenbrekken/22cabba27cbdfe3a0512f39750d1c648 to your computer and use it in GitHub Desktop.
Async/await exponential retry
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const startTime = Date.now() | |
const start = async (attempt, { retries = 3, interval = 250 }) => { | |
for (let tries = 0, delay = interval; tries < retries; tries++, delay *= 2) { | |
console.log('Waiting', delay, Date.now() - startTime) | |
await attempt() | |
console.log('Retrying!') | |
} | |
console.log('Done trying') | |
} | |
const fakeFetch = () => { | |
console.log('Fetching something fake') | |
return new Promise(resolve => setTimeout(resolve, 50)) | |
} | |
start(fakeFetch, { retries: 3, interval: 250 }) |
should have timeout support to
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try it out here