debounce<R> method

Observable<T> debounce<R>(
  1. DurationSelector<T, R> durationSelector
)

Emits a value from this Observable only after a particular time span determined by another Observable has passed without another emission.

Implementation

Observable<T> debounce<R>(DurationSelector<T, R> durationSelector) =>
    DebounceObservable<T, R>(this, durationSelector);