CMD

data object CMD : RuntimeEvent<TorCmdJob> (source)

The current TorCmd that is being executed by TorRuntime.

Useful for reacting to specific jobs via attachment of an TorCmdJob.invokeOnCompletion handler.

e.g.

EXECUTE.CMD.observer { job ->
    if (job.cmd != TorCmd.Onion.Add::class) return@observer
    job.invokeOnCompletion {
        if (job.isSuccess) {
            // do something
        }
    }
}

See also

Properties

Link copied to clipboard
val name: String

Functions

Link copied to clipboard
protected override fun createProtected(event: RuntimeEvent<TorCmdJob>, tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<TorCmdJob>): RuntimeEvent.Observer<TorCmdJob>
Link copied to clipboard
operator override fun equals(other: Any?): Boolean
Link copied to clipboard
override fun hashCode(): Int
Link copied to clipboard
Link copied to clipboard
@JvmStatic
fun RuntimeEvent.Processor.observeSignalNewNym(tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<String?>): Disposable.Once

Subscribes with provided TorRuntime a CMD observer which will intercept execution of all TorCmd.Signal.NewNym jobs in order to transform tor's generic server response of Reply.Success.OK.

Link copied to clipboard
override fun toString(): String