Skip to content

Instantly share code, notes, and snippets.

@shakahl
Forked from yandzee/index.js
Created February 27, 2018 11:34
Show Gist options
  • Select an option

  • Save shakahl/863c8850d277c2fcef4a42d90fa00c5c to your computer and use it in GitHub Desktop.

Select an option

Save shakahl/863c8850d277c2fcef4a42d90fa00c5c 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