DismissSnackbarEventHolder
Constructors
Properties
Id of this event — how TriggerEvent/UpdateEvents and getEventHolder/getTileHolder address it by id.
This event's own trigger condition — not itself mutated by update's JSON-patch merge in practice (an update targeting trigger would be unusual), but part of the schema get() returns.
Functions
Returns this event's current T snapshot. Re-derives via getEventSchema and clears the dirty flag when isDirty is true; otherwise returns the cached event unchanged.
Searches this holder's own subtree (this event, then depth-first through events and tiles) for the EventHolder whose id equals eventId — the lookup behind TriggerEvent/UpdateEvents, when it recurses past the point where TilesManager.getEventHolder handed off into a specific event's own nested structure.
Whether this holder — or any descendant tile or event holder — has been markAsDirty'd since it was last read via get.
Applies updateData as a shallow JSON-patch merge onto this event's current event — the mechanism behind UpdateEvents, the event-level equivalent of dev.catbit.mosaic.client.ui.sdui.foundation.tiles.holder.tile.TileHolder.update. Unlike the tile version, there's no special-cased nested field (no style equivalent) — every top-level key in updateData simply overwrites the matching key on the encoded event object, and the merged JSON is decoded back into a fresh T via the framework's dev.catbit.mosaic.core.serialization.MosaicSerializer.