merge
Merges the input streams or subjections, returning a new stream.
Type
typescripttype merge: (...args: (Stream | Subjection)[]) => Stream;
Details
- Stream merging operation refers to pushing data to the new stream in time order, as long as any input stream pushes data.
- The new stream will unsubscribe when all input streams are unsubscribed.
- The new stream will finish when all input streams have finished.