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