Method Process
Process<TSource>(IObservable<TSource>)
Delays subscription to an observable sequence by the specified time interval, using the render loop scheduler.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
sourceIObservable<TSource>The source sequence to delay subscription for.
Returns
- IObservable<TSource>
The time-shifted sequence, where subscription is delayed by the specified time interval, using the render loop scheduler.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.