get_rx/src/rx_stream/rx_stream library

Classes

FastList<T>
GetStream<T>
GetStream is the lightest and most performative way of working with events at Dart. You sintaxe is like StreamController, but it works with simple callbacks. In this way, every event calls only one function. There is no buffering, to very low memory consumption. event add will add a object to stream. addError will add a error to stream. listen is a very light StreamSubscription interface. Is possible take the last value with value property.
GetStreamTransformation<T>
LightSubscription<T>
MiniStream<T>
MiniSubscription<T>
Node<T>

Typedefs

AddSubscription<T> = FutureOr<void> Function(LightSubscription<T> subs)
RemoveSubscription<T> = FutureOr<bool?> Function(LightSubscription<T> subs)