Qbservable.Throttle<TSource> Method (IQbservable<TSource>, TimeSpan, IScheduler)
Ignores the values from a queryable observable sequence which are followed by another value before due time with the specified source, dueTime and scheduler.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
public static IQbservable<TSource> Throttle<TSource>( this IQbservable<TSource> source, TimeSpan dueTime, IScheduler scheduler )
Type Parameters
- TSource
The type of source.
Parameters
- source
- Type: System.Reactive.Linq.IQbservable<TSource>
The source sequence to throttle.
- dueTime
- Type: System.TimeSpan
The duration of the throttle period for each value.
- scheduler
- Type: System.Reactive.Concurrency.IScheduler
The scheduler to run the throttle timers on.
Return Value
Type: System.Reactive.Linq.IQbservable<TSource>The values from a queryable observable sequence which are followed by another value before due time.