window
Returns an Observable that emits non-overlapping windows of elements it collects from the source Observable.
Please refer to the corresponding RxJava document.
Returns an Observable that emits non-overlapping windows of elements it collects from the source Observable. Window boundaries are determined by the elements emitted by the specified boundaries Observable.
Please refer to the corresponding RxJava document.
Returns an Observable that emits possibly overlapping windows of elements it collects from the source Observable.
Please refer to the corresponding RxJava document.
Returns an Observable that emits possibly overlapping windows of elements it collects from the source Observable. Every new window is opened when the opening Observable emits an element. Each window is closed when the corresponding Observable returned by the closing function completes.
Please refer to the corresponding RxJava document.
Returns an Observable that emits windows of elements it collects from the source Observable.
Please refer to the corresponding RxJava document.