Processor
Base interface for implementations that process Privileged type TorCmd
NOTE: Implementors MUST process the command on a different thread than what enqueue is called from for Jvm & Native.
Functions
Link copied to clipboard
abstract fun <Success : Any> enqueue(cmd: TorCmd.Privileged<Success>, onFailure: OnFailure, onSuccess: OnSuccess<Success>): EnqueuedJob
Adds the cmd to the queue.
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.Privileged.Processor.executeAsync(cmd: TorCmd.Privileged<Success>): Success
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.Privileged.Processor.executeAsync(cmd: TorCmd.Privileged<Success>): Success
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.Privileged.Processor.executeAsync(cmd: TorCmd.Privileged<Success>): Success
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
@JvmOverloads
Enqueues the cmd, blocking the current thread until completion or cancellation/error.