Skip to main content

ExecutionNode

Defined in: types.ts:45

A single step in the execution graph.

Properties

children

readonly children: readonly string[]

Defined in: types.ts:57

IDs of child nodes spawned by this node.


endTime

readonly endTime: number | null

Defined in: types.ts:52

Epoch milliseconds. null while the node is still running.


id

readonly id: string

Defined in: types.ts:46


metadata

readonly metadata: Readonly<Record<string, unknown>>

Defined in: types.ts:59

Arbitrary key-value data attached to this node.


name

readonly name: string

Defined in: types.ts:48


parentId

readonly parentId: string | null

Defined in: types.ts:55

null for the root node.


startTime

readonly startTime: number

Defined in: types.ts:50

Epoch milliseconds (Date.now()).


state

readonly state: Readonly<Record<string, unknown>>

Defined in: types.ts:61

Mutable-at-build-time state snapshot for this node.


status

readonly status: NodeStatus

Defined in: types.ts:53


type

readonly type: NodeType

Defined in: types.ts:47