StreamNode<T> class abstract

Inheritance
Mixed in types
Implementers
Available Extensions

Constructors

StreamNode({String? name})

Properties

hashCode int
The hash code for this object.
no setterinherited
inputs List<StreamNode>
no setterinherited
name String?
getter/setter pairinherited
outputType String
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

addSchedule({String? name, required Iterable<Schedule<T>> schedule}) ScheduleNode<T>
compareTo(dynamic other) int
Compares this object to another object.
inherited
convert<U>(U converter(Stream<T>), {String? name}) ConversionNode<T, U>
groupBy<T, K>(StreamNode<T> node, K grouper(T), {required List<K> possibleGroups, String? name}) Grouping<T, K>
groupMapBy<K, V>({required K grouper(T), required V mapper(T), required List<K> possibleGroups, String? name}) GroupMapping<T, K, V>
map<U>(U mapper(T), {String? name}) TransformNode<T, U>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
partition(bool predicate(T x), {String? nameForMatches, String? nameForNonMatches}) Partitioning<T>
streamTransformer(StreamTransformer<T, T> transformer(StreamNode<T>)) StreamTransformer<T, T>
toString() String
A string representation of this object.
inherited
transform<U>(StreamTransformer<T, U> transformer, {String? name}) TransformNode<T, U>
where(bool predicate(T), {String? name}) FilterNode<T>
whereType<U extends T>({String? name}) FilterNode<T>
withDoOnData(Stream<T> input, void onData(dynamic, StreamNode<T>)) Stream<T>

Operators

operator ==(Object other) bool
The equality operator.
inherited