SingleSubscriptionTransformer<S, T> class

A transformer that converts a broadcast stream into a single-subscription stream.

This buffers the broadcast stream's events, which means that it starts listening to a stream as soon as it's bound.

This also casts the source stream's events to type T. If the cast fails, the result stream will emit a CastError. This behavior is deprecated, and should not be relied upon.

Inheritance

Constructors

SingleSubscriptionTransformer()
const

Properties

hashCode int
The hash code for this object. [...]
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

bind(Stream<S> stream) Stream<T>
Transforms the provided stream. [...]
override
cast<RS, RT>() StreamTransformer<RS, RT>
Provides a StreamTransformer<RS, RT> view of this stream transformer. [...]
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
toString() String
Returns a string representation of this object.
inherited

Operators

operator ==(dynamic other) bool
The equality operator. [...]
inherited