Observable.Window<TSource> Method (IObservable<TSource>, TimeSpan, Int32)
Projects each element of an observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IObservable<IObservable<TSource>> Window<TSource>( this IObservable<TSource> source, TimeSpan timeSpan, int count )
Type Parameters
- TSource
The type of source.
Parameters
- source
- Type: System.IObservable<TSource>
The source sequence to produce windows over.
- timeSpan
- Type: System.TimeSpan
The maximum time length of a window.
- count
- Type: System.Int32
The maximum element count of a window.