tree: 0188ed7152d1de4a5db9afbaad65bd8de6ac8baf [path history] [tgz]
  1. lib/
  2. test/
  3. .gitignore
  4. .travis.yml
  5. analysis_options.yaml
  6. CHANGELOG.md
  7. LICENSE
  8. pubspec.yaml
  9. README.md
pkgs/stream_transform/README.md

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.