Observer
abstract class Observer<Data, E : Event<Data, E, *>>(val event: E, tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<Data>)(source)
Base abstraction for creating event observer types.
Parameters
event
The event being observed.
tag
A string to help grouping/identifying observer(s).
executor
The thread context in which onEvent will be invoked in. If null, the default passed to notify from the Event processor implementation will be utilized.
onEvent
The callback to pass event data to.
Inheritors
Properties
Functions
Link copied to clipboard
Optional override for inheritors to do things before invoking actual OnEvent callback (if at all) within the confines of the OnEvent.Executor context.