Notifier

interface Notifier(source)

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

Inheritors

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
@JvmStatic
fun RuntimeEvent.Notifier.d(from: Any?, log: String)

LOG.DEBUG level logging. Will prefix log with from string value and a space (' '), if from is non-null.

Link copied to clipboard
@JvmStatic
fun RuntimeEvent.Notifier.e(cause: Throwable)

ERROR level logging.

Link copied to clipboard
@JvmStatic
fun RuntimeEvent.Notifier.i(from: Any?, log: String)

LOG.INFO level logging. Will prefix log with from string value and a space (' '), if from is non-null.

Link copied to clipboard

LIFECYCLE event logging.

Link copied to clipboard
abstract fun <Data : Any, E : RuntimeEvent<Data>> notify(event: E, data: Data)
Link copied to clipboard
@JvmStatic
fun RuntimeEvent.Notifier.w(from: Any?, log: String)

LOG.WARN level logging. Will prefix log with from string value and a space (' '), if from is non-null.