-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathretry.js
36 lines (31 loc) · 1006 Bytes
/
retry.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Write a function that to retries a request after a delay
const setTimeoutPromise = async (delayMS) => {
return new Promise(resolve => {
setTimeout(resolve, delayMS);
});
}
const retry = (cb, delayMS, maxAttempts, attempts = 0) => {
return new Promise((resolve, reject) => {
if (attempts >= maxAttempts) {
reject('Max Attempts Failure');
} else {
try {
resolve(cb());
} catch (err) {
setTimeoutPromise(delayMS)
.then(() => {
retry(cb, delayMS, maxAttempts, ++attempts)
.catch(() => { reject('Max Attempts Failure') });
})
.catch(() => { reject('Max Attempts Failure') });
}
}
});
}
const callback = () => {
throw new Error('whoops!');
return 'Hello';
}
retry(callback, 500, 3)
.then(console.log)
.catch(err => console.log('final error', err));