delay<R> method

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

Delays the emission of items from this Observable until the Observable returned from durationSelector triggers.

Implementation

Observable<T> delay<R>(DurationSelector<T, R> durationSelector) =>
    DelayObservable<T, R>(this, durationSelector);