Interface QueueBaseOptions

Base Queue options

interface QueueBaseOptions {
    blockingConnection?: boolean;
    connection?: ConnectionOptions;
    prefix?: string;
    sharedConnection?: boolean;
}

Hierarchy (view full)

Properties

blockingConnection?: boolean

Denotes commands should retry indefinitely.

connection?: ConnectionOptions

Options for connecting to a Redis instance.

prefix?: string

Prefix for all queue keys.

sharedConnection?: boolean

Specify if the connection is shared.

Generated using TypeDoc