UNPKG

@johngw/stream

Version:

Reactive programming tools using the WHATWG Streams API.

64 lines (63 loc) 1.34 kB
import { StorageCache } from '@johngw/stream/storages/StorageCache'; import { Clearable } from '@johngw/stream/types/Clearable'; import { CachePuller } from '@johngw/stream/sources/CachableSource'; /** * An extension to the `ReadableStream` that queues items * only when a timed cache becomes invalid. * * @group Sources * @see {@link StorageCache} * @see {@link CachableSource:class} * @example * Caching for 30 minutes. * * ``` * const cache = new StorageCache( * localStorage, * 'my-cache', * 30 * 60_000 * ) * * let i = 0 * const stream = new CachableStream<number>( * cache, * ['numbers'], * () => ++i * ) * * stream.pipeTo(write(console.info)) * // 1 * * await setTimeout(30 * 60_000)) * // 2 * ``` * @example * Manually clearing cache. * * ``` * const cache = new StorageCache( * localStorage, * 'my-cache', * 30 * 60_000 * ) * * let i = 0 * const stream = new CachableStream<number>( * cache, * ['numbers'], * () => ++i * ) * * stream.pipeTo(write(console.info)) * // 1 * * stream.clear() * // 2 * ``` */ export declare class CachableStream<T> extends ReadableStream<T> implements Clearable { #private; constructor(cache: StorageCache, path: string[], pullItem: CachePuller<T>, ms?: number); clear(): void; get sourceHasFinished(): boolean; }