Skip to content

Commit

Permalink
Doc: Added CFM state diagram pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
nhjschulz committed Feb 10, 2024
1 parent 01dfce3 commit 2f6608e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions doc/cfsm_context.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@startuml CFSM COntext
state SomeState
state OtherState

SomeState : entry/ entry_operations()
SomeState : process/ cyclic_process_operations()
SomeState : leave/ leave_operations()

OtherState : entry/ entry_operations()
OtherState : process/ cyclic_process_operations()
OtherState : leave/ leave_operations()

SomeState -r-> OtherState : [Event x]

@enduml

0 comments on commit 2f6608e

Please sign in to comment.