SongGuess
    Preparing search index...
    interface Queue<Body = unknown> {
        metrics(): Promise<QueueMetrics>;
        send(message: Body, options?: QueueSendOptions): Promise<QueueSendResponse>;
        sendBatch(
            messages: Iterable<MessageSendRequest<Body>>,
            options?: QueueSendBatchOptions,
        ): Promise<QueueSendBatchResponse>;
    }

    Type Parameters

    • Body = unknown
    Index

    Methods