@logixjs/core
    Preparing search index...

    Interface RuntimeDebugEventRef

    interface RuntimeDebugEventRef {
        downgrade?: { reason?: "non_serializable" | "oversized" | "unknown" };
        errorSummary?: SerializableErrorSummary;
        eventId: string;
        eventSeq: number;
        instanceId: string;
        kind: RuntimeDebugEventKind;
        label: string;
        linkId?: string;
        meta?: JsonValue;
        moduleId: string;
        runtimeLabel?: string;
        timestamp: number;
        txnId?: string;
        txnSeq: number;
    }

    Hierarchy

    • RuntimeDebugEventRef
      • RuntimeDebugEventRef
    Index

    Properties

    downgrade?: { reason?: "non_serializable" | "oversized" | "unknown" }
    errorSummary?: SerializableErrorSummary
    eventId: string
    eventSeq: number
    instanceId: string
    kind: RuntimeDebugEventKind
    label: string
    linkId?: string

    linkId:

    • Current operation chain id (shared by boundary ops in the same chain).
    • Created by Runtime at the boundary root and propagated via FiberRef across nested/cross-module chains.
    meta?: JsonValue
    moduleId: string
    runtimeLabel?: string
    timestamp: number
    txnId?: string
    txnSeq: number