Method Process
Process<TSource>(IObservable<TSource>)
Allows a single element from an observable sequence to pass through every time the specified time interval elapses.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The observable sequence to filter.
Returns
- IObservable<TSource>
The filtered observable sequence. Every time the specified time interval elapses, the next element from the
source
sequence will be allowed through.
Type Parameters
TSource
The type of the elements in the
source
sequence.