UNPKG

1.61 kBTypeScriptView Raw
1import { ObservableInput, OperatorFunction } from '../types';
2/**
3 * Buffers the source Observable values, using a factory function of closing
4 * Observables to determine when to close, emit, and reset the buffer.
5 *
6 * <span class="informal">Collects values from the past as an array. When it
7 * starts collecting values, it calls a function that returns an Observable that
8 * tells when to close the buffer and restart collecting.</span>
9 *
10 * ![](bufferWhen.png)
11 *
12 * Opens a buffer immediately, then closes the buffer when the observable
13 * returned by calling `closingSelector` function emits a value. When it closes
14 * the buffer, it immediately opens a new buffer and repeats the process.
15 *
16 * ## Example
17 *
18 * Emit an array of the last clicks every [1-5] random seconds
19 *
20 * ```ts
21 * import { fromEvent, interval } from 'rxjs';
22 * import { bufferWhen } from 'rxjs/operators';
23 *
24 * const clicks = fromEvent(document, 'click');
25 * const buffered = clicks.pipe(bufferWhen(() =>
26 * interval(1000 + Math.random() * 4000)
27 * ));
28 * buffered.subscribe(x => console.log(x));
29 * ```
30 *
31 *
32 * @see {@link buffer}
33 * @see {@link bufferCount}
34 * @see {@link bufferTime}
35 * @see {@link bufferToggle}
36 * @see {@link windowWhen}
37 *
38 * @param {function(): Observable} closingSelector A function that takes no
39 * arguments and returns an Observable that signals buffer closure.
40 * @return A function that returns an Observable of arrays of buffered values.
41 */
42export declare function bufferWhen<T>(closingSelector: () => ObservableInput<any>): OperatorFunction<T, T[]>;
43//# sourceMappingURL=bufferWhen.d.ts.map
\No newline at end of file