finish
Combines the data after the input streams or subjections have finished, returning a new stream.
Type
typescripttype combine: (...args: (Stream | Subjection)[]) => Stream;
Details
- The new stream will only emit its first data after all input streams have finished.
- The new stream will also finish after emitting its first data.
- The new stream will unsubscribe when all input streams are unsubscribed.