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

Link copied to clipboard
Link copied to clipboard
data object ERROR : RuntimeEvent<Throwable>

Errors encountered by TorRuntime.

Link copied to clipboard
data object EXECUTE
Link copied to clipboard

Events pertaining to an object's lifecycle.

Link copied to clipboard

Events pertaining to listeners which tor has opened.

Link copied to clipboard
sealed class LOG : RuntimeEvent<String>

Logging for TorRuntime internals.

Link copied to clipboard
interface Notifier

Helper for selectively exposing the ability to notify observers externally of the TorRuntime implementation.

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

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

Link copied to clipboard

Base interface for implementations that process RuntimeEvent.

Link copied to clipboard
data object READY : RuntimeEvent<String>

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.

Link copied to clipboard
data object STATE : RuntimeEvent<TorState>

Events pertaining to the current state of TorRuntime.

Properties

Link copied to clipboard
val name: String

Functions

Link copied to clipboard
protected override fun createProtected(event: RuntimeEvent<Data>, tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<Data>): RuntimeEvent.Observer<Data>
Link copied to clipboard
operator override fun equals(other: Any?): Boolean
Link copied to clipboard
override fun hashCode(): Int
Link copied to clipboard
fun observer(tag: String, onEvent: OnEvent<Data>): RuntimeEvent.Observer<Data>
fun observer(tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<Data>): RuntimeEvent.Observer<Data>
Link copied to clipboard
override fun toString(): String