blob: ea2685a85bfb747974ff95ef5ed8a01fcacfa4e9 [file] [log] [blame] [view]
Contains utility methods to create `StreamTransfomer` instances to manipulate
Streams.
# buffer
Collects values from a source stream until a `trigger` stream fires and the
collected values are emitted.
# concat
Appends the values of a stream after another stream finishes.
# debounce, debounceBuffer
Prevents a source stream from emitting too frequently by dropping or collecting
values that occur within a given duration.
# merge, mergeAll
Interleaves events from multiple streams into a single stream.
# tap
Taps into a single-subscriber stream to react to values as they pass, without
being a real subscriber.