The promise repeater plugin allows you to "try" and repeat promises until they are resolved. It also allows you establish a margin of milliseconds between each try.
Methods
Method
Description
maxAttempts
Sets limit of attempts for retrying promise
unlimitedAttempts
Sets a infinite limit of attempts
delay
Sets a delay (in milliseconds) for each retry
start | attempt
Starts the process of resolving the promise and retrying until it is resolved
Attempt 1
Attempt 2
Attempt 3
Resolved
Attempt 1 // Second #2
Attempt 2 // Second #4
Attempt 3 // Second #6
Resolved
Attempt 1
Attempt 2
Attempt 3
Resolved
Attempt 1
// Throw the error on method `promiseFunction` since it ran out of attemps and it was never resolved.
error: Uncaught Error:
if(i < 3) throw new Error();