hoodkit
    Preparing search index...

    Interface StreamOptions

    Options for a Stream.

    interface StreamOptions {
        highWaterMark?: number;
        overflow?: OverflowPolicy;
    }

    Hierarchy (View Summary)

    Index
    highWaterMark?: number

    Max buffered values for the async-iterator form before OverflowPolicy applies. Ignored by event listeners (they never buffer).

    1024

    overflow?: OverflowPolicy

    Overflow behavior for the async-iterator buffer.

    'drop-oldest'