Enumeration Priority

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

Used in:
Event
Enumeration Literals
Name 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).
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.
parallel Execute in parallel to other events.

Migration Information from XSD 0.9.1
Derived From:
Enum_event_priority
Property Name XSD Type XSD 0.9.1 Name Migration
overwrite Attribute overwrite
skip Attribute skip
parallel Attribute N/A Created for version 1.0.
Attribute following De-supported in Version 1.0.. If used in 0.9.1 an error is issued during migration.

XSD 1.0 Representation


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

To XSD To XSLT