combine
Combines input streams or subjections and returns 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 emitted their first data.
- The new stream will unsubscribe when all input streams are unsubscribed.
- The new stream will finish when all input streams have finished.