TriggerEventEventSchema
Looks up the event registered on the screen under eventId and runs it inline, letting one event chain re-use another that lives on a different tile.
incomingData consumed: forwarded unchanged to the event being run.
Triggers fired:
OnSuccessEventTrigger— after the target event ran. No data is passed downstream.OnFailureEventTrigger— when no event is registered under eventId (no data passed), or when running it throws (theThrowableis passed as incomingData). Both cases are logged.
Constructors
Properties
This event's own children — each declaring, via its own trigger, which of this event's outgoing triggers runs it. null when this event declares no children.
The condition that must occur for this event to run — matched by structural equality (data class/data object equality) against whatever trigger value fired, never by any kind of subscription or listener registry.