Interface Queue<Body>

interface Queue<Body> {
    send(message, options?): Promise<void>;
    sendBatch(messages, options?): Promise<void>;
}

Type Parameters

  • Body = unknown

Methods

Methods

  • Parameters

    Returns Promise<void>