executeAsync

expect suspend fun <T : Action.Processor> T.executeAsync(action: Action): T(source)

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

NOTE: If Action is StartDaemon or RestartDaemon, the EnqueuedJob.ExecutionPolicy allows for handling of kotlinx.coroutines.Job cancellation while the action is being executed (normally a non-cancellable state). In the event the underlying kotlinx.coroutines.Job for the caller of executeAsync gets cancelled during execution, TorRuntime will check for and cancel itself as soon as possible. If this is undesirable, wrap your call with a kotlinx.coroutines.NonCancellable job.

e.g.

withContext(NonCancellable) {
    runtime.executeAsync(Action.StartDaemon)
}

See also

actual suspend fun <T : Action.Processor> T.executeAsync(action: Action): T(source)

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

NOTE: If Action is StartDaemon or RestartDaemon, the EnqueuedJob.ExecutionPolicy allows for handling of kotlinx.coroutines.Job cancellation while the action is being executed (normally a non-cancellable state). In the event the underlying kotlinx.coroutines.Job for the caller of executeAsync gets cancelled during execution, TorRuntime will check for and cancel itself as soon as possible. If this is undesirable, wrap your call with a kotlinx.coroutines.NonCancellable job.

e.g.

withContext(NonCancellable) {
    runtime.executeAsync(Action.StartDaemon)
}

See also

@JvmStatic
actual suspend fun <T : Action.Processor> T.executeAsync(action: Action): T(source)

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

NOTE: If Action is StartDaemon or RestartDaemon, the EnqueuedJob.ExecutionPolicy allows for handling of kotlinx.coroutines.Job cancellation while the action is being executed (normally a non-cancellable state). In the event the underlying kotlinx.coroutines.Job for the caller of executeAsync gets cancelled during execution, TorRuntime will check for and cancel itself as soon as possible. If this is undesirable, wrap your call with a kotlinx.coroutines.NonCancellable job.

e.g.

withContext(NonCancellable) {
    runtime.executeAsync(Action.StartDaemon)
}

See also