Versions Compared

Key

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

...

PlantUML
@startuml
scale 600 width

[*] -> State1Created
State1Created --> State2Waiting : Succeeded
State1 --> [*] : Aborted
State2 --> State3 : Succeeded
State2 --> [*] : Aborted
state State3 {
  state "Accumulate Enough Data\nLong State Name" as long1
  long1 : Just a test
  [*] --> long1
  long1 --> long1 : New Data
  long1 --> ProcessData : Enough Data
}
State3 --> State3 : Failed
State3 --> [*] : Succeeded / Save Result
State3 --> [*] : Abortedfor resources : Start scheduling
Waiting for resources --> Waiting for resources : Resources not stable yet
Waiting for resources --> Executing : Resources stable

@enduml


Components of the scheduler

...