delay<R> method
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);