Processor

interface Processor(source)

Base interface for implementations that process Unprivileged type TorCmd

NOTE: Implementors MUST process the command on a different thread than what enqueue is called from for Jvm & Native.

Inheritors

Functions

Link copied to clipboard
abstract fun <Success : Any> enqueue(cmd: TorCmd.Unprivileged<Success>, onFailure: OnFailure, onSuccess: OnSuccess<Success>): EnqueuedJob

Adds the cmd to the queue.

Link copied to clipboard

Enqueues the cmd, suspending the current coroutine until completion or cancellation/error.

Enqueues the cmd, suspending the current coroutine until completion or cancellation/error.

Enqueues the cmd, suspending the current coroutine until completion or cancellation/error.

Link copied to clipboard
@JvmOverloads
fun <Success : Any> TorCmd.Unprivileged.Processor.executeSync(cmd: TorCmd.Unprivileged<Success>, cancellation: () -> CancellationException?? = null): Success

Enqueues the cmd, blocking the current thread until completion or cancellation/error.