FreakingGenius - v0.1.0
    Preparing search index...

    Interface AcknowledgeMessage

    Either direction: acknowledge receipt of a specific message.

    interface AcknowledgeMessage {
        acknowledgedMessageId: string;
        error?: string;
        messageId: string;
        sessionId: string;
        success: boolean;
        timestamp: number;
        type: ACKNOWLEDGE;
    }

    Hierarchy (View Summary)

    Index

    Properties

    acknowledgedMessageId: string

    The messageId of the message being acknowledged.

    error?: string

    Human-readable error description when success is false.

    messageId: string

    Unique message identifier (UUID v4) used for ACK correlation.

    sessionId: string

    Active session ID so both sides can correlate messages to a session.

    success: boolean

    true if the message was processed without error.

    timestamp: number

    Unix timestamp (ms) when the message was created.

    Discriminant string from BridgeMessageType.