Method Process
Process<TSource>(IObservable<TSource>)
Records the time interval between consecutive values produced by an observable sequence.
public IObservable<TimeInterval<TSource>> Process<TSource>(IObservable<TSource> source)
Parameters
sourceIObservable<TSource>The source sequence to record time intervals for.
Returns
- IObservable<TimeInterval<TSource>>
An observable sequence with time interval information for each element.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.