concat
Combines input streams or subjections in sequence, returning a new stream.
Type
typescripttype concat: (...args: (Stream | Subjection)[]) => Stream;
Details
- Data from the next input stream will only be pushed to the new stream after the current input stream has finished.
- The new stream will also unsubscribe when the current input stream unsubscribes.