AepUIEventObserver
Interface for observing events related to Adobe Experience Platform UI components. This interface defines a mechanism for handling various types of events triggered by lifecycle changes or user interactions with UI elements, such as display, dismiss, or user interaction events.
Interface Definition
Kotlin
Copied to your clipboardinterface AepUIEventObserver {fun onEvent(event: UIEvent<*, *>)}
Methods
onEvent
Called when an event related to a UI template occurs.
Parameters
- event - The event to handle. Implementers can provide specific logic based on the type of UIEvent.
Syntax
Kotlin
Copied to your clipboardfun onEvent(event: UIEvent<*, *>)