FreakingGenius - v0.1.0
    Preparing search index...

    Interface HeartbeatMessage

    Either direction: keep-alive pulse. No payload beyond the base envelope.

    interface HeartbeatMessage {
        messageId: string;
        sessionId: string;
        timestamp: number;
        type: HEARTBEAT;
    }

    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.

    type: HEARTBEAT

    Discriminant string from BridgeMessageType.