RuntimeEvent
Events specific to TorRuntime
e.g.
val runtime = TorRuntime.Builder(myEnvironment) {
observerStatic(ERROR) { t ->
t.printStackTrace()
}
observerStatic(EXECUTE.ACTION) { job ->
println(job)
}
// ...
}
val observerState = STATE.observer(
tag = "1234",
executor = OnEvent.Executor.Main,
onEvent = { state -> println(state) },
)
runtime.subscribe(observerState)
runtime.unsubscribe(observerState)
See also
Inheritors
Types
Errors encountered by TorRuntime.
Events pertaining to an object's lifecycle.
Events pertaining to listeners which tor has opened.
Logging for TorRuntime internals.
Helper for selectively exposing the ability to notify observers externally of the TorRuntime implementation.
Model to be registered with a Processor for being notified via OnEvent invocation with RuntimeEvent data.
Base interface for implementations that process RuntimeEvent.
Indicates that tor has completed bootstrapping and the network is enabled. All READY observers will be notified a single time per runtime startup completion. If the currently running tor instance is stopped via Action.StopDaemon or Action.RestartDaemon, READY observers will be notified again in the same manner when the next start completion occurs.
Events pertaining to the current state of TorRuntime.