DebounceOperator<T> extension
- on
-
- Observable<
T>
- Observable<
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.