Distribute data chunks from a stream to other streams
With Node.js Readable streams, you can be able to pipe them to several
destination streams, receiving all of them a copy of the same data. This module
allows instead to send each data chunk to a diferent destination stream each
time in a Round-Robin way.
npm install streams-dispatcher- options: options passed to the underlaying
Writablestream- inputOptions: options passed to the internal
inputstream - writers: list of
Writablestreams where to distribute the data chunks
- inputOptions: options passed to the internal
Move management of in-flight data chunks to its own independent module