Observer

open class Observer<Data : Any>(event: RuntimeEvent<Data>, tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<Data>) : Event.Observer<Data, RuntimeEvent<Data>> (source)

Model to be registered with a Processor for being notified via OnEvent invocation with RuntimeEvent data.

See also

Constructors

Link copied to clipboard
constructor(event: RuntimeEvent<Data>, tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<Data>)

Properties

Link copied to clipboard
Link copied to clipboard
val tag: String?

Functions

Link copied to clipboard
protected open fun notify(data: Data)
fun notify(default: OnEvent.Executor, data: Data)
fun notify(handler: CoroutineContext, default: OnEvent.Executor, data: Data)
Link copied to clipboard
override fun toString(): String
fun toString(isStatic: Boolean): String