Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PlantUML Macro
alignleft
titleParticipant States
@startuml
state UNINITIALIZED

state PASSIVE

state RUNNING

[*] --> UNINITIALIZED: Created by\nACM Runtime

UNINITIALIZED --> PASSIVE: Initializing

PASSIVE --> RUNNING: Triggered by\nParticipantActivating

RUNNING --> PASSIVE: Triggerd by\nParticipantUninitializing

PASSIVE --> UNINITIALIZED: Triggered by\nACM RuntimeUninitializing

@enduml


Then, a Control Loop Element can be running a number of operations, each of which has an operational state:

...