web-csv-toolbox - v0.14.0
    Preparing search index...

    Interface BackpressureOptions

    Backpressure control options for streaming operations.

    interface BackpressureOptions {
        backpressureCheckInterval?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    backpressureCheckInterval?: number

    Interval (in items) to check for backpressure.

    Lower values = more responsive to backpressure but slight performance overhead. Higher values = less overhead but slower backpressure response.

    The default value varies by implementation:

    • Lexer/Parser streams: 100 (per 100 tokens/records)
    • Assembler streams: 10 (per 10 records)
    varies by implementation