Skip to content

Instantly share code, notes, and snippets.

@ShMcK
Created July 22, 2018 16:30
Show Gist options
  • Save ShMcK/ce2ed65a6a4445ab13b8a2549c7f3597 to your computer and use it in GitHub Desktop.
Save ShMcK/ce2ed65a6a4445ab13b8a2549c7f3597 to your computer and use it in GitHub Desktop.
scxml example
<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