transferum
    Preparing search index...

    Type Alias BackpressureConfig<T>

    Shared backpressure configuration — concurrency limit, buffer size, and overflow callback.

    type BackpressureConfig<T> = {
        bufferSize?: number;
        maxConcurrency?: number;
        onBufferOverflow?: DataHandler<T>;
    }

    Type Parameters

    • T
    Index
    bufferSize?: number
    maxConcurrency?: number
    onBufferOverflow?: DataHandler<T>