blob: b5ffaa1d1181bf07eb6cae8fcf55858dcd5c90f4 [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.