@bluelibs/runner - v6.3.1
    Preparing search index...

    Interface ConcurrencyState

    interface ConcurrencyState {
        semaphores: Set<Semaphore>;
        semaphoresByConfig: WeakMap<
            ConcurrencyMiddlewareConfig,
            Map<string, Semaphore>,
        >;
        semaphoresByKey: Map<string, { limit: number; semaphore: Semaphore }>;
    }
    Index

    Properties

    semaphores: Set<Semaphore>
    semaphoresByConfig: WeakMap<ConcurrencyMiddlewareConfig, Map<string, Semaphore>>
    semaphoresByKey: Map<string, { limit: number; semaphore: Semaphore }>