Description

Base class for all classes that need to interact with queues. This class is normally not used directly, but extended by the other classes.

Hierarchy

Implements

  • MinimalQueue

Constructors

  • Parameters

    • name: string

      The name of the queue.

    • Optional opts: QueueBaseOptions

      Options for the queue.

    • Optional Connection: typeof RedisConnection

      An optional "Connection" class used to instantiate a Connection. This is useful for testing with mockups and/or extending the Connection class and passing an alternate implementation.

    Returns QueueBase

Properties

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

Type declaration

    • (type): string
    • Parameters

      • type: string

      Returns string

Accessors

  • get client(): Promise<RedisClient>
  • Returns a promise that resolves to a redis client. Normally used only by subclasses.

    Returns Promise<RedisClient>

  • get redisVersion(): string
  • Returns the version of the Redis instance the client is connected to,

    Returns string

Methods

  • Returns Promise<void>

    Closes the connection and returns a promise that resolves when the connection is closed.

  • Force disconnects a connection.

    Returns Promise<void>

  • Emits an event. Normally used by subclasses to emit events.

    Parameters

    • event: string | symbol

      The emitted event.

    • Rest ...args: any[]

    Returns boolean

  • Returns Promise<RedisClient>

Generated using TypeDoc