Statifier.Event (statifier v1.9.0)
View SourceRepresents an event that can be sent to a state chart.
Events can be external (from outside the state chart) or internal (generated by the state chart itself, e.g., from <raise> actions).
Summary
Functions
Check if an event is external.
Create a new internal event.
Check if an event is internal.
Check if this event matches a transition's event specification.
Create a new external event.
Types
Functions
Check if an event is external.
Create a new internal event.
Check if an event is internal.
Check if this event matches a transition's event specification.
Supports SCXML event matching patterns:
- Universal wildcard: "*" matches any event
- Prefix matching: "foo" matches "foo", "foo.bar", "foo.bar.baz"
- Multiple descriptors: "foo bar" matches "foo" OR "bar" (and their prefixes)
- Wildcard suffix: "foo.*" matches "foo.bar", "foo.baz" (but not "foo")
Create a new external event.