RxExtensions<T> extension
Methods
-
debounce(Duration delay, void callback(T))
→ RxReaction
-
Every time that the Rx<T> changes the
callback
will be called after a delay.
-
ever(void callback(T), {bool condition(T)?})
→ RxReaction
-
callback
is called every time that the Rx<T> changes.
-
interval(Duration duration, void callback(T))
→ RxReaction
-
the
callback
will be called every certain time interval ignoring the other changes
-
once(void callback(T), {bool condition(T)?})
→ RxReaction
-
the
callback
will be executed only 1 time