pumpify
Last updated
Was this helpful?
Last updated
Was this helpful?
Combine an array of streams into a single duplex stream using and . If one of the streams closes/errors all streams in the pipeline will be destroyed.
Pass the streams you want to pipe together to pumpify pipeline = pumpify(s1, s2, s3, ...)
. pipeline
is a duplex stream that writes to the first streams and reads from the last one. Streams are piped together using so if one of them closes all streams will be destroyed.
If you are pumping object streams together use pipeline = pumpify.obj(s1, s2, ...)
. Call pipeline.destroy()
to destroy the pipeline (including the streams passed to pumpify).
setPipeline(s1, s2, ...)
MIT
Similar to you can also define the pipeline asynchronously using setPipeline(s1, s2, ...)
pumpify
is part of the which includes more useful stream modules similar to this one.