UNPKG

1.59 kBTypeScriptView Raw
1import { Observable } from '../Observable';
2import { MonoTypeOperatorFunction } from '../types';
3/**
4 * Emits the most recently emitted value from the source Observable whenever
5 * another Observable, the `notifier`, emits.
6 *
7 * <span class="informal">It's like {@link sampleTime}, but samples whenever
8 * the `notifier` Observable emits something.</span>
9 *
10 * ![](sample.png)
11 *
12 * Whenever the `notifier` Observable emits a value, `sample`
13 * looks at the source Observable and emits whichever value it has most recently
14 * emitted since the previous sampling, unless the source has not emitted
15 * anything since the previous sampling. The `notifier` is subscribed to as soon
16 * as the output Observable is subscribed.
17 *
18 * ## Example
19 * On every click, sample the most recent "seconds" timer
20 * ```ts
21 * import { fromEvent, interval } from 'rxjs';
22 * import { sample } from 'rxjs/operators';
23 *
24 * const seconds = interval(1000);
25 * const clicks = fromEvent(document, 'click');
26 * const result = seconds.pipe(sample(clicks));
27 * result.subscribe(x => console.log(x));
28 * ```
29 *
30 * @see {@link audit}
31 * @see {@link debounce}
32 * @see {@link sampleTime}
33 * @see {@link throttle}
34 *
35 * @param notifier The Observable to use for sampling the
36 * source Observable.
37 * @return A function that returns an Observable that emits the results of
38 * sampling the values emitted by the source Observable whenever the notifier
39 * Observable emits value or completes.
40 */
41export declare function sample<T>(notifier: Observable<any>): MonoTypeOperatorFunction<T>;
42//# sourceMappingURL=sample.d.ts.map
\No newline at end of file