FreakingGenius - v0.1.0
    Preparing search index...

    Interface StrokeEventMessage

    Edge → Tutor: a completed pen stroke delivered for analysis.

    interface StrokeEventMessage {
        messageId: string;
        sessionId: string;
        stroke: Stroke;
        timestamp: number;
        type: STROKE_EVENT;
    }

    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.

    stroke: Stroke

    The completed stroke, including all pressure-point samples.

    timestamp: number

    Unix timestamp (ms) when the message was created.

    Discriminant string from BridgeMessageType.