Companion

expect object Companion(source)
actual object Companion(source)
actual object Companion(source)

Functions

Link copied to clipboard
expect suspend fun <T : Action.Processor> T.executeAsync(action: Action): T

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

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

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

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

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

Link copied to clipboard
@JvmStatic
@JvmOverloads
fun <T : Action.Processor> T.executeSync(action: Action, cancellation: () -> CancellationException?? = null): T

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

Link copied to clipboard
expect inline suspend fun <T : Action.Processor> T.restartDaemonAsync(): T

Stops and then starts the tor daemon, suspending the current coroutine until completion or cancellation/error.

actual inline suspend fun <T : Action.Processor> T.restartDaemonAsync(): T

Stops and then starts the tor daemon, suspending the current coroutine until completion or cancellation/error.

@JvmStatic
actual inline suspend fun <T : Action.Processor> T.restartDaemonAsync(): T

Stops and then starts the tor daemon, suspending the current coroutine until completion or cancellation/error.

Link copied to clipboard
@JvmStatic
@JvmOverloads
inline fun <T : Action.Processor> T.restartDaemonSync(noinline cancellation: () -> CancellationException?? = null): T

Stops and then starts the tor daemon, blocking the current thread until completion or cancellation/error.

Link copied to clipboard
expect inline suspend fun <T : Action.Processor> T.startDaemonAsync(): T

Starts the tor daemon, suspending the current coroutine until completion or cancellation/error.

actual inline suspend fun <T : Action.Processor> T.startDaemonAsync(): T

Starts the tor daemon, suspending the current coroutine until completion or cancellation/error.

@JvmStatic
actual inline suspend fun <T : Action.Processor> T.startDaemonAsync(): T

Starts the tor daemon, suspending the current coroutine until completion or cancellation/error.

Link copied to clipboard
@JvmStatic
@JvmOverloads
inline fun <T : Action.Processor> T.startDaemonSync(noinline cancellation: () -> CancellationException?? = null): T

Starts the tor daemon, blocking the current thread until completion or cancellation/error.

Link copied to clipboard
expect inline suspend fun <T : Action.Processor> T.stopDaemonAsync(): T

Stops the tor daemon, suspending the current coroutine until completion or cancellation/error.

actual inline suspend fun <T : Action.Processor> T.stopDaemonAsync(): T

Stops the tor daemon, suspending the current coroutine until completion or cancellation/error.

@JvmStatic
actual inline suspend fun <T : Action.Processor> T.stopDaemonAsync(): T

Stops the tor daemon, suspending the current coroutine until completion or cancellation/error.

Link copied to clipboard
@JvmStatic
@JvmOverloads
inline fun <T : Action.Processor> T.stopDaemonSync(noinline cancellation: () -> CancellationException?? = null): T

Stops the tor daemon, blocking the current thread until completion or cancellation/error.