window
// With window closing selector
Rx.Observable.prototype.window(windowClosingSelector);
// With window opening and window closing selector
Rx.Observable.prototype.window(windowOpenings, windowClosingSelector);
// With boundaries
Rx.Observable.prototype.window(windowBoundaries);Arguments
Returns
Example
With window boundaries
With window opening and window closing selector
With openings and closings
Last updated