Observable.Throttle<TSource> Method (IObservable<TSource>, TimeSpan)
Ignores the values from an observable sequence which are followed by another value before due time with the specified source and dueTime.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IObservable<TSource> Throttle<TSource>( this IObservable<TSource> source, TimeSpan dueTime )
Type Parameters
- TSource
The type of source.
Parameters
- source
- Type: System.IObservable<TSource>
The source sequence to throttle.
- dueTime
- Type: System.TimeSpan
The duration of the throttle period for each value.
Return Value
Type: System.IObservable<TSource>The values from an observable sequence which are followed by another value before due time.