Skip to content

Pipe

Rx.pipe pipes the output from one stream into the next, in order. The returned stream is a new stream capturing the final output.

const rx = Rx.pipe(rx1, rx2, rx3);

See also to which sends output from one reactive to another.