I Have a bunch of API calls which I want to run in parallel using generators and redux saga (https://redux-saga.js.org/docs/api/#alleffects-parallel-effects). This works great, however, I want to show the progress of the operation. Basically how many requests have been resolved already.
I found this post, but it is working with plain promises.
This is my current impl without progress is:
yield all(features.map(feature => call(apiFunction, feature)))