windowCount
signature: windowCount(windowSize: number, startWindowEvery: number): Observable
windowCount(windowSize: number, startWindowEvery: number): Observable
Observable of values from source, emitted each time provided count is fulfilled.
Examples
Example 1: Start new window every x items emitted
( StackBlitz | jsBin | jsFiddle )
Additional Resources
:newspaper: - Official docs
:file_folder: Source Code: https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/windowCount.ts
Last updated