Method Process
Process<TSource>(IObservable<TSource>)
Wraps the source sequence in order to run its subscription and unsubscription logic on the specified scheduler.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The observable sequence to wrap.
Returns
- IObservable<TSource>
An observable sequence where subscription and unsubscription logic are run on the specified scheduler.
Type Parameters
TSource
The type of the elements in the
source
sequence.