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