DelayOperator<T> extension

on

Methods

delay<R>(DurationSelector<T, R> durationSelector) → Observable<T>

Available on Observable<T>, provided by the DelayOperator extension

Delays the emission of items from this Observable until the Observable returned from durationSelector triggers.
delayTime(Duration duration, {Scheduler? scheduler}) → Observable<T>

Available on Observable<T>, provided by the DelayOperator extension

Delays the emission of items from this Observable by a given timeout.