@backblaze-labs/b2-mcp
    Preparing search index...

    Interface InFlightLimiter

    In-flight request limiter shared by Node and serverless HTTP runtimes.

    interface InFlightLimiter {
        active: number;
        acquire(cacheKey: string): InFlightLimitResult;
        rekey(fromCacheKey: string, toCacheKey: string): InFlightLimitResult;
        release(cacheKey: string): void;
    }
    Index
    active: number

    Total number of currently acquired request slots.

    • Release previously acquired capacity.

      Parameters

      • cacheKey: string

      Returns void