Qbservable.Window Method
Include Protected Members
Include Inherited Members
Projects each element of a queryable 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>(IQbservable<TSource>, Int32) | Projects each element of a queryable observable sequence into consecutive non-overlapping windows which are produced based on element count information. |
![]() ![]() |
Window<TSource, TWindowClosing>(IQbservable<TSource>, Expression<Func<IObservable<TWindowClosing>>>) | Projects each element of a queryable observable sequence into consecutive non-overlapping windows. |
![]() ![]() |
Window<TSource>(IQbservable<TSource>, TimeSpan) | Projects each element of a queryable observable sequence into consecutive non-overlapping windows which are produced based on timing information. |
![]() ![]() |
Window<TSource>(IQbservable<TSource>, Int32, Int32) | Projects each element of a queryable observable sequence into zero or more windows which are produced based on element count information. |
![]() ![]() |
Window<TSource, TWindowOpening, TWindowClosing>(IQbservable<TSource>, IObservable<TWindowOpening>, Expression<Func<TWindowOpening, IObservable<TWindowClosing>>>) | Projects each element of a queryable observable sequence into zero or more windows. |
![]() ![]() |
Window<TSource>(IQbservable<TSource>, TimeSpan, Int32) | Projects each element of a queryable observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed. |
![]() ![]() |
Window<TSource>(IQbservable<TSource>, TimeSpan, IScheduler) | Projects each element of a queryable observable sequence into consecutive non-overlapping windows which are produced based on timing information. |
![]() ![]() |
Window<TSource>(IQbservable<TSource>, TimeSpan, TimeSpan) | Projects each element of a queryable observable sequence into zero or more windows which are produced based on timing information. |
![]() ![]() |
Window<TSource>(IQbservable<TSource>, TimeSpan, Int32, IScheduler) | Projects each element of a queryable observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed. |
![]() ![]() |
Window<TSource>(IQbservable<TSource>, TimeSpan, TimeSpan, IScheduler) | Projects each element of a queryable observable sequence into zero or more windows which are produced based on timing information. |
Top