StepState enum

The cursor state of one inflated node (M4-P1 §3).

ready AND complete are the two POSITIVE TERMINALS that satisfy a dependsOn: a StepKind.job satisfies on complete then is pruned; a StepKind.daemon satisfies on ready while staying mounted. failed routes to supervision (re-key within budget, or escalation when exhausted).

Inheritance
Available extensions

Values

pending → const StepState

Not yet started (no host mounted, or never spawned).

running → const StepState

A host is mounted and the process is live (pre-terminal).

ready → const StepState

A daemon signalled it is up — a positive terminal that satisfies a dep while the daemon stays mounted.

complete → const StepState

A job ran to completion — a positive terminal that satisfies a dep, then the job retires.

failed → const StepState

The step failed — routes to supervision (D-5).

gated → const StepState

Parked at a human gate — a NON-positive, non-failed terminal-ish state: it does not satisfy a dependsOn, is not retired, is not circuit-broken, and does not re-mount until the gate resolves — D-7.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<StepState>
A constant List of the values in this enum, in order of their declaration.