Method Process
Process<TSource>(IObservable<TSource>)
Returns the count of the number of elements in an observable sequence.
public override IObservable<int> Process<TSource>(IObservable<TSource> source)
Parameters
sourceIObservable<TSource>An observable sequence that contains elements to be counted.
Returns
- IObservable<int>
An observable sequence containing a single integer representing the total number of elements in the
sourcesequence.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.