You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This adds an implementation of `tee`-like functions for `emit` streams.
There is:
- `teeing` which is controlled by the consumer on the outside (i.e. if
the outside consumer stops, it stops the inside one too)
- `tee` which runs two consumers with one producer, stopping once both
are done
- `manyTee` which allows to implement `tee` for more than 2 consumers
easily
<del>Note that my initial implementation of this depended on #919. I
don't think this one does, but would probably still want to hold off on
merging this for either solving it or someone else being sufficiently
certain it doesn't.</del>
0 commit comments