Closed i-like-robots closed 7 years ago
I am thinking about rejecting the complete queue if the nextCheck throws. This would result in a bit of a different API tho.
The nextCheck
should always resolve with a boolean, true
to start the next task false
to abort;
If it however rejects this error will propagate to the user's code and they should do their cleanup however they want.
Rejecting in the nextCheck will propagate now in version 2.3.0😄
Nice one, thanks!
I created a next callback function to implement an error limit:
However the error this rejects with is gobbled up because there is an empty rejected handler:
https://github.com/DJWassink/Promise-parallel-throttle/blob/master/src/throttle.ts#L74
I think it would be useful if this empty handler was removed so that any rejections may be caught and handled my the implementer.
I understand this may cause issues if more tasks have already been spawned but I would be interested to work out a solution.