Skip to content

Instantly share code, notes, and snippets.

@atomize
Forked from yandzee/index.js
Created July 7, 2018 01:24
Show Gist options
  • Save atomize/76fd67bf55fa7566d408193e62adc2c8 to your computer and use it in GitHub Desktop.
Save atomize/76fd67bf55fa7566d408193e62adc2c8 to your computer and use it in GitHub Desktop.
Code retry with promises
// Author: Renat Tuktarov ([email protected])
const retry = function(fn, prev) {
return new Promise((current, reject) => {
const resolve = _ => (prev && prev()) || current();
fn(resolve, delay => {
setTimeout(_ => {
retry(fn, resolve);
}, delay);
});
});
};
function run() {
let attempt = 1;
retry((done, retry) => {
console.log('attempt: ', attempt);
if (attempt !== 3) {
attempt += 1;
retry(1000);
} else {
done();
}
});
}
run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment