@squidcloud/backend
    Preparing search index...

    Interface QueueMessageRequest<T>

    The context provided to a queue message handler function.

    interface QueueMessageRequest<T = unknown> {
        integrationId: string;
        message: T;
        topicName: string;
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    integrationId: string

    The ID of the integration the topic belongs to.

    message: T

    The message payload.

    topicName: string

    The name of the topic the message was received on.