bustle / bluestream

A collection of streams that work well with promises (through, map, reduce). Think Through2 with promises
MIT License
103 stars 5 forks source link

fix(transform): concurrent now works #9

Closed reconbot closed 7 years ago

reconbot commented 7 years ago

The old concurrency model was copied from promise stream and had some issues with events finishing at different times. We now use a set to figure out what's still in flight and let promises remove themselves, no timing required.