You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we have more old users than new users the new users stream will end and end the count users pipe. Pipe takes an option to stop propagating the close event but then you have to manually listen for both close events and then call .end() on the destination stream. That's annoying.
The multistream package solves this by piping one stream than another. But we often want to do these operations concurrently. So merge-stream fits that bill.
Maybe this should be built into pipe? However if that's the case we need to ensure the inverse works too. (multiplexing).
A way to combine streams is needed. It's one of those things that should be easy to do.
The following wont work right.
If we have more old users than new users the new users stream will end and end the count users pipe. Pipe takes an option to stop propagating the close event but then you have to manually listen for both close events and then call
.end()
on the destination stream. That's annoying.The
multistream
package solves this by piping one stream than another. But we often want to do these operations concurrently. Somerge-stream
fits that bill.Maybe this should be built into pipe? However if that's the case we need to ensure the inverse works too. (multiplexing).
I wan to keep researching prior art.
The text was updated successfully, but these errors were encountered: