Processor
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
expect suspend fun <Success : Any> TorCmd.Unprivileged.Processor.executeAsync(cmd: TorCmd.Unprivileged<Success>): Success
Enqueues the cmd, suspending the current coroutine until completion or cancellation/error.
actual suspend fun <Success : Any> TorCmd.Unprivileged.Processor.executeAsync(cmd: TorCmd.Unprivileged<Success>): Success
Enqueues the cmd, suspending the current coroutine until completion or cancellation/error.
actual suspend fun <Success : Any> TorCmd.Unprivileged.Processor.executeAsync(cmd: TorCmd.Unprivileged<Success>): Success
Enqueues the cmd, suspending the current coroutine until completion or cancellation/error.
Link copied to clipboard
@JvmOverloads
Enqueues the cmd, blocking the current thread until completion or cancellation/error.