SystemActionPhase
Description
A SystemActionPhase
object represents a logic phase in the
RoadRunner scenario logic that executes actions without an actor.
Creation
You can create a SystemActionPhase
object in these ways:
The
addPhaseInSerial
function creates a logic phase with the specified phase type, and adds it before or after the specified existing phase in the RoadRunner scenario logic. Specify thephaseType
argument as"SystemActionPhase"
to create aSystemActionPhase
object.The
addPhaseInParallel
function creates a phase with the specified type and adds it in parallel to the specified existing phase or serial sequence of phases in the RoadRunner scenario logic. Specify thephaseType
argument as"SystemActionPhase"
to create aSystemActionPhase
object.The
addPhase
function creates a new phase of the specified type and adds it as the last child of the specified serial or parallel phase in the RoadRunner scenario logic. Specify thephaseType
argument as"SystemActionPhase"
to create aSystemActionPhase
object.
Properties
Examples
Version History
Introduced in R2025a
See Also
addPhaseInSerial
| addPhaseInParallel
| addPhase
| PhaseLogic
| ActorActionPhase