Observable.Window Method
Include Protected Members
Include Inherited Members
Projects each element of an observable sequence.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
Window<TSource, TWindowClosing>(IObservable<TSource>, Func<IObservable<TWindowClosing>>) | Projects each element of an observable sequence into consecutive non-overlapping windows. | |
Window<TSource>(IObservable<TSource>, Int32) | Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on element count information. | |
Window<TSource>(IObservable<TSource>, TimeSpan) | Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information. | |
Window<TSource>(IObservable<TSource>, Int32, Int32) | Projects each element of an observable sequence into zero or more windows which are produced based on element count information. | |
Window<TSource, TWindowOpening, TWindowClosing>(IObservable<TSource>, IObservable<TWindowOpening>, Func<TWindowOpening, IObservable<TWindowClosing>>) | Projects each element of an observable sequence into zero or more windows. | |
Window<TSource>(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. | |
Window<TSource>(IObservable<TSource>, TimeSpan, IScheduler) | Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information. | |
Window<TSource>(IObservable<TSource>, TimeSpan, TimeSpan) | Projects each element of an observable sequence into zero or more windows which are produced based on timing information. | |
Window<TSource>(IObservable<TSource>, TimeSpan, Int32, IScheduler) | 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. | |
Window<TSource>(IObservable<TSource>, TimeSpan, TimeSpan, IScheduler) | Projects each element of an observable sequence into zero or more windows which are produced based on timing information. |
Top