@bluelibs/runner - v6.3.1
    Preparing search index...

    Interface FullExecutionContextSnapshot

    Full execution-context snapshot with tracked causal frames.

    interface FullExecutionContextSnapshot {
        correlationId: string;
        currentFrame: ExecutionFrame;
        depth: number;
        frames: readonly ExecutionFrame[];
        framesMode: "full";
        signal?: AbortSignal;
        startedAt: number;
    }

    Hierarchy

    • ExecutionContextSnapshotBase
      • FullExecutionContextSnapshot
    Index

    Properties

    correlationId: string

    Correlation id shared across the current execution tree.

    currentFrame: ExecutionFrame

    The frame that is currently active.

    depth: number

    Current nesting depth within the execution tree.

    frames: readonly ExecutionFrame[]

    Ordered stack of execution frames from root to current frame.

    framesMode: "full"

    Whether frame tracking is enabled for the active execution tree.

    signal?: AbortSignal

    First inherited signal for the active execution tree when one exists.

    startedAt: number

    Epoch timestamp for the top-level execution start.