UIEvent
Marker interface for events related to the browser authentication UI, such as browser customization and activity lifecycle events. Model-layer handlers that do not need to respond to UI events can exclude this type:
EventCoordinator(object : EventHandler {
override fun onEvent(event: Event) {
if (event is UIEvent) return // skip UI events in model layer
// handle other events
}
})Content copied to clipboard