mirror of
https://github.com/XRPLF/rippled.git
synced 2026-09-01 06:41:24 +00:00
25 lines
590 B
Plaintext
25 lines
590 B
Plaintext
/*!
|
|
\page somestatechart Example state diagram
|
|
|
|
\startuml SomeState "my state diagram"
|
|
scale 600 width
|
|
|
|
[*] -> State1
|
|
State1 --> State2 : 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 --> [*] : Aborted
|
|
|
|
\enduml
|
|
*/
|