DebounceOperator<T> extension

on

Methods

debounce<R>(DurationSelector<T, R> durationSelector) Observable<T>
Emits a value from this Observable only after a particular time span determined by another Observable has passed without another emission.
debounceTime(Duration duration, {Scheduler? scheduler}) Observable<T>
Emits a value from this Observable only after a particular time span has passed without another emission.