@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias MessagePublicationRequest

    type MessagePublicationRequest = {
        correlationKey?: string;
        messageId?: string;
        name: string;
        tenantId?: TenantId;
        timeToLive?: number;
        variables?: { [key: string]: unknown };
    }
    Index

    Properties

    correlationKey?: string

    The correlation key of the message.

    messageId?: string

    The unique ID of the message. This is used to ensure only one message with the given ID will be published during the lifetime of the message (if timeToLive is set).

    name: string

    The name of the message.

    tenantId?: TenantId

    The tenant of the message sender.

    timeToLive?: number

    Timespan (in ms) to buffer the message on the broker.

    variables?: { [key: string]: unknown }

    The message variables as JSON document.