Types

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

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

Link copied to clipboard
Link copied to clipboard
interface Processor

Base interface for implementations that process TorEvent.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
@JvmField
val name: String

Functions

Link copied to clipboard
protected override fun createProtected(event: TorEvent, tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<String>): TorEvent.Observer

Protected factory function for creating instances of the Event.Observer implementation.

Link copied to clipboard
fun observer(onEvent: OnEvent<String>): TorEvent.Observer

Creates a new observer for subscribing to its events.

fun observer(tag: String, onEvent: OnEvent<String>): TorEvent.Observer

Creates a new observer with the provided tag for subscribing to its events.

fun observer(tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<String>): TorEvent.Observer

Creates a new observer with the provided tag and executor for subscribing to its events.