Contains utility methods to create StreamTransfomer instances to manipulate Streams.
Like where but allows an asynchronous predicate.
Audit waits for a period of time after receiving a value and then only emits the most recent value.
Collects values from a source stream until a trigger stream fires and the collected values are emitted.
Appends the values of a stream after another stream finishes.
Prevents a source stream from emitting too frequently by dropping or collecting values that occur within a given duration.
Interleaves events from multiple streams into a single stream.
Scan is like fold, but instead of producing a single value it yields each intermediate accumulation.
Flatten a Stream of Streams into a Stream which forwards values from the most recent Stream
Taps into a single-subscriber stream to react to values as they pass, without being a real subscriber.
Blocks events for a duration after an event is successfully emitted.