Rx.Observable.delayWithSelector([subscriptionDelay], delayDurationSelector)
Time shifts the observable sequence by dueTime. The relative time intervals between the values are preserved.
[subscriptionDelay]
(Observable
): Sequence indicating the delay for the subscription to the source.delayDurationSelector
(Function
): Selector function to retrieve a sequence indicating the delay for each given element.(Observable
): Time-shifted sequence.