Observable.Sample<TSource> Method (IObservable<TSource>, TimeSpan, IScheduler)
Samples the observable sequence at each interval with the specified source, interval and scheduler.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IObservable<TSource> Sample<TSource>( this IObservable<TSource> source, TimeSpan interval, IScheduler scheduler )
Type Parameters
- TSource
The type of source.
Parameters
- source
- Type: System.IObservable<TSource>
The source sequence to sample.
- interval
- Type: System.TimeSpan
The interval at which to sample.
- scheduler
- Type: System.Reactive.Concurrency.IScheduler
The scheduler to run the sampling timer on.