bullmq - v6.0.3
    Preparing search index...

    Interface ScriptQueueContext

    interface ScriptQueueContext {
        blockingClient?: Promise<IRedisClient>;
        closing: Promise<void>;
        keys: KeysMap;
        opts: QueueBaseOptions;
        toKey: (type: string) => string;
        get client(): Promise<IRedisClient>;
        get databaseType(): DatabaseType;
        get redisVersion(): string;
    }
    Index
    blockingClient?: Promise<IRedisClient>

    Optional dedicated blocking connection used by the backend's waitForJob primitive. Only workers provide it; other contexts (e.g. a plain Queue) leave it undefined since they never block waiting for jobs.

    closing: Promise<void>
    keys: KeysMap
    toKey: (type: string) => string