It's quite usual that some request or code takes too long to resolve or reject in the case of Promises in JavaScript, this involves that sometimes we won't be able to wait for the request to resolve as it may never be resolved and therefore the promise will never be fulfilled, forcing us to wait indefinitely.
By default, the Promises in JavaScript don't offer any way to cancel a promise if it's not fulfilled in X time. Fortunately, in case that you find yourself in such scenario, there are some implementations that you may use to solve this problem and I will explain them to you in this short article.
Helper method Promises.timeout
The first solution involves the Promises.race
method. This built-in method returns the result (or the rejection) of the first promise that is fulfilled, while the others will be ignored. In the case of a timeout-like implementation, you may implement something like this:
For convenience, if you already have some code written, you may extend the Promise prototype and create the timeout wrapper that expects as first argument your original promise and as second argument, the limit of time in milliseconds for the promise to fulfill:
It could be used like this:
Alternatively if you want to use it with async and await:
Happy coding ❤️!
0 Comments