| commit | d455de471ebe0cec0c728894a10582b29d1e5120 | [log] [tgz] |
|---|---|---|
| author | Lasse R.H. Nielsen <lrn@google.com> | Thu Jan 26 01:10:16 2023 +0100 |
| committer | Lasse R.H. Nielsen <lrn@google.com> | Thu Jan 26 01:10:16 2023 +0100 |
| tree | 32488d97c2e1a85c92783357232a377457fb7622 | |
| parent | c9cc576e1f4d477047f737cace79ed6b72c70350 [diff] |
Simplify implementation of `StreamQueue`. Only change in behavior is that all event seen by the original queue while the transaction request is active, are forwarded to the transaction immediately, and will still be visible after the transaction commits or rejects. The existing behavior was based on cancelling a stream subscription and which events were visible depended on which commands had been used to request those events.
Contains utility classes in the style of dart:async to work with asynchronous computations.
The AsyncCache class allows expensive asynchronous computations values to be cached for a period of time.
The AsyncMemoizer class makes it easy to only run an asynchronous operation once on demand.
The CancelableOperation class defines an operation that can be canceled by its consumer. The producer can then listen for this cancellation and stop producing the future when it's received. It can be created using a CancelableCompleter.
The delegating wrapper classes allow users to easily add functionality on top of existing instances of core types from dart:async. These include DelegatingFuture, DelegatingStream, DelegatingStreamSubscription, DelegatingStreamConsumer, DelegatingSink, DelegatingEventSink, and DelegatingStreamSink.
The FutureGroup class makes it easy to wait until a group of futures that may change over time completes.
The LazyStream class allows a stream to be initialized lazily when .listen() is first called.
The NullStreamSink class is an implementation of StreamSink that discards all events.
The RestartableTimer class extends Timer with a reset() method.
The Result class that can hold either a value or an error. It provides various utilities for converting to and from Futures and Streams.
The StreamGroup class merges a collection of streams into a single output stream.
The StreamQueue class allows a stream to be consumed event-by-event rather than being pushed whichever events as soon as they arrive.
The StreamSplitter class allows a stream to be duplicated into multiple identical streams.
The StreamZip class combines multiple streams into a single stream of lists of events.
This package contains a number of StreamTransformers. SingleSubscriptionTransformer converts a broadcast stream to a single-subscription stream, and typedStreamTransformer casts the type of a Stream. It also defines a transformer type for StreamSinks, StreamSinkTransformer.
The SubscriptionStream class wraps a StreamSubscription so it can be re-used as a Stream.