Method Process
Process<TSource>(IObservable<TSource>)
Repeats the observable sequence until it successfully terminates.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The observable sequence to repeat until it successfully terminates.
Returns
- IObservable<TSource>
The observable sequence producing the elements of the given sequence repeatedly until it terminates successfully.
Type Parameters
TSource
The type of the elements in the
source
sequence.