ExecutionNode
Defined in: types.ts:45
A single step in the execution graph.
Properties
children
readonlychildren: readonlystring[]
Defined in: types.ts:57
IDs of child nodes spawned by this node.
endTime
readonlyendTime:number|null
Defined in: types.ts:52
Epoch milliseconds. null while the node is still running.
id
readonlyid:string
Defined in: types.ts:46
metadata
readonlymetadata:Readonly<Record<string,unknown>>
Defined in: types.ts:59
Arbitrary key-value data attached to this node.
name
readonlyname:string
Defined in: types.ts:48
parentId
readonlyparentId:string|null
Defined in: types.ts:55
null for the root node.
startTime
readonlystartTime:number
Defined in: types.ts:50
Epoch milliseconds (Date.now()).
state
readonlystate:Readonly<Record<string,unknown>>
Defined in: types.ts:61
Mutable-at-build-time state snapshot for this node.
status
readonlystatus:NodeStatus
Defined in: types.ts:53
type
readonlytype:NodeType
Defined in: types.ts:47