Created
July 22, 2018 16:30
-
-
Save ShMcK/ce2ed65a6a4445ab13b8a2549c7f3597 to your computer and use it in GitHub Desktop.
scxml example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<parallel id="p"> | |
<transition event="done.state.p" target="someOtherState"/> | |
<state id="S1" initial="S11"> | |
<state id="S11"> | |
<transition event="e4" target="S12"/> | |
</state> | |
<state id="S12"> | |
<transition event="e1" target="S1Final"/> | |
</state> | |
<final id="S1Final"/> | |
</state> | |
<state id="S2" initial="S21"> | |
<state id=S21"> | |
<transition event="e1" target="S22"/> | |
</state> | |
<state id="S22"> | |
<transition event="e2" target="S2Final/> | |
</state> | |
<final id="S2Final"/> | |
</state> | |
</parallel> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment