Enumeration Priority

Rules that govern interaction between events that belong to the same maneuver.

Used in:
Event
Enumeration Literals
Name Applied Stereotypes Description
overwrite If a starting event has priority Overwrite, all events in running state, within the same scope (maneuver) as the starting event, should be issued a stop command (stop transition).
parallel Execute in parallel to other events.
skip If a starting event has priority Skip, then it will not be ran if there is any other event in the same scope (maneuver) in the running state.

XSD 1.1 Representation


<xsd:simpleType name="Priority">
<xsd:union>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="overwrite"/>
<xsd:enumeration value="parallel"/>
<xsd:enumeration value="skip"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType>
<xsd:restriction base="parameter"/>
</xsd:simpleType>
</xsd:union>
</xsd:simpleType>

To XSD