123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0"?>
- <!-- we test that delayed <send> is not sent if the sending session terminates. In this case,
- a subscript is invoked which sends the event childToParent delayed by 1 second, and then terminates. The
- parent session, should not receive childToParent. If it does, we fail. Otherwise the
- 10 sec timer expires and we pass -->
- <scxml initial="s0" version="1.0" conf:datamodel="" xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
- <state id="s0" >
- <onentry>
- <send event="timeout" conf:delay="1"/>
- </onentry>
- <invoke type="scxml" >
- <content>
- <!-- exit before the delayed send can execute -->
- <scxml initial="sub0" version="1.0" conf:datamodel="" xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
- <state id="sub0">
- <onentry>
- <send event="childToParent" target="#_parent" conf:delay=".5"/>
- </onentry>
- <transition target="subFinal"/>
- </state>
- <final id="subFinal"/>
- </scxml>
- </content>
- </invoke>
- <transition event="childToParent" conf:targetfail=""/>
- <transition event="timeout" conf:targetpass=""/>
- </state>
- <conf:pass/>
- <conf:fail/>
- </scxml>
|