ERROR

data object ERROR : RuntimeEvent<Throwable> (source)

Errors encountered by TorRuntime.

All exceptions encountered when notifying other non-ERROR observers (including TorEvent observers) are piped to ERROR observers as UncaughtException.

NOTE: All ERROR observers utilize OnEvent.Executor.Immediate.

NOTE: Any exceptions thrown by ERROR observers are re-thrown as UncaughtException (if not already one). This will likely crash the program.

NOTE: If the error is an UncaughtException and no observers for ERROR are subscribed with the TorRuntime, the UncaughtException will be thrown and likely crash the program. It is critical that an ERROR observer be registered either via TorRuntime.BuilderScope.observerStatic, or immediately after TorRuntime is instantiated via TorRuntime.subscribe.

Properties

Link copied to clipboard
val name: String

Functions

Link copied to clipboard
protected override fun createProtected(event: RuntimeEvent<Throwable>, tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<Throwable>): RuntimeEvent.Observer<Throwable>
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(onEvent: OnEvent<Throwable>): RuntimeEvent.Observer<Throwable>
fun observer(tag: String, onEvent: OnEvent<Throwable>): RuntimeEvent.Observer<Throwable>
fun observer(tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<Throwable>): RuntimeEvent.Observer<Throwable>
Link copied to clipboard
override fun toString(): String