Interface QueueBaseOptions

Base Queue options

interface QueueBaseOptions {
    blockingConnection?: boolean;
    connection: ConnectionOptions;
    prefix?: string;
    skipVersionCheck?: 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.

skipVersionCheck?: boolean

Avoid version validation to be greater or equal than v5.0.0.

Default Value

false

Generated using TypeDoc