Method Process
Process<TSource>(IObservable<TSource>)
Repeats the observable sequence a specified number of times.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The observable sequence to repeat.
Returns
- IObservable<TSource>
The observable sequence producing the elements of the given sequence repeatedly.
Type Parameters
TSource
The type of the elements in the
source
sequence.