FreakingGenius - v0.1.0
    Preparing search index...

    Interface BridgeMessageBase

    Fields common to every message that crosses the bridge.

    interface BridgeMessageBase {
        messageId: string;
        sessionId: string;
        timestamp: number;
        type: BridgeMessageType;
    }

    Hierarchy (View Summary)

    Index

    Properties

    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.

    timestamp: number

    Unix timestamp (ms) when the message was created.

    Discriminant string from BridgeMessageType.