We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found a case, where only one of two parallel transitions on the same event are executed.
SCXML:
<scxml initial="parallel"> <parallel id="parallel"> <state id="s1" initial="s11"> <state id="s11"> <transition event="e" target="s12"></transition> </state> <state id="s12"></state> </state> <state id="s2"> <state id="wrapper_state"> <transition event="x" target="s23"></transition> <state id="s21"> <transition event="e" target="s22"></transition> </state> <state id="s22"></state> </state> <state id="s23"></state> </state> </parallel> </scxml>
Initial configuration:
['parallel', 's1', 's11', 's2', 'wrapper_state', 's21']
Configuration after event e:
e
['parallel', 's1', 's12', 's2', 'wrapper_state', 's21']
s11 transitions to s12 but sadly s21 stays. I need to trigger event e a second time to make the transition to s22.
s11
s12
s21
s22
But when I delete the transition on event x in the SCXML, it is working fine.
x
The text was updated successfully, but these errors were encountered:
This is a very good catch because I found additional issue in your example which is related to issue #176
I made 3 tests which cover issues #176, #203
Sorry, something went wrong.
Fixes tklab-tud#176, Fixes tklab-tud#203
07c207d
No branches or pull requests
I found a case, where only one of two parallel transitions on the same event are executed.
SCXML:
Initial configuration:
Configuration after event
e
:s11
transitions tos12
but sadlys21
stays.I need to trigger event
e
a second time to make the transition tos22
.But when I delete the transition on event
x
in the SCXML, it is working fine.The text was updated successfully, but these errors were encountered: