Observer

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

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

See also

Constructors

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

Properties

Link copied to clipboard
@JvmField
val event: TorEvent
Link copied to clipboard
@JvmField
val tag: String?

A string value for grouping or identifying the observer.

Functions

Link copied to clipboard
protected open fun notify(data: String)

Optional override for inheritors to do things before invoking actual OnEvent callback (if at all) within the confines of the OnEvent.Executor context.

fun notify(default: OnEvent.Executor, data: String)

Invokes OnEvent with the provided data

fun notify(handler: CoroutineContext, default: OnEvent.Executor, data: String)

Invokes OnEvent with the provided data

Link copied to clipboard
fun toString(isStatic: Boolean): String

Helper for processor implementations as to not expose a static tag externally.