InstanceState

abstract class InstanceState<C : AbstractTorServiceUI.Config> @ExperimentalKmpTorApi constructor(args: AbstractTorServiceUI.Args.Instance) : FileID(source)

Core commonMain abstraction for implementors to track changes via registration of RuntimeEvent.Observer and TorEvent.Observer for the instance of Lifecycle.DestroyableTorRuntime operating within the service object.

The primary objective of the InstanceState API is to observe the Lifecycle.DestroyableTorRuntime instance operating within the service object and react by updating some sort of stateful object (whatever that may be for the implementation), then notify the UI "container" via postStateChange that a change has occurred.

NOTE: This is currently an ExperimentalKmpTorApi when extending to create your own implementation. Things may change (as the annotation states), so use at your own risk! Prefer using the stable implementation via the kmp-tor:runtime-service-ui dependency.

Throws

IllegalStateException

on instantiation if args were not those which were passed to createProtected. See Args.

Constructors

Link copied to clipboard
@ExperimentalKmpTorApi
protected constructor(args: AbstractTorServiceUI.Args.Instance)

Properties

Link copied to clipboard
abstract val events: Set<TorEvent>

The required TorEvents needed for this implementation to function.

Link copied to clipboard
override val fid: String
Link copied to clipboard
@JvmField
val instanceConfig: C

The config for this instance. If no config was expressed when setting up the TorRuntime.Environment, then Factory.defaultConfig was utilized.

Link copied to clipboard
@JvmField
protected val instanceScope: CoroutineScope

A CoroutineScope which is configured as a child to the serviceChildScope.

Link copied to clipboard

The RuntimeEvent.Observers that will be added upon instantiation of Lifecycle.DestroyableTorRuntime.

Link copied to clipboard

The TorEvent.Observers that will be added upon instantiation of Lifecycle.DestroyableTorRuntime.

Functions

Link copied to clipboard
fun debug(lazyMessage: () -> String)

Notify RuntimeEvent.LOG.DEBUG observers for the running instance of Lifecycle.DestroyableTorRuntime.

Link copied to clipboard
fun isDestroyed(): Boolean
Link copied to clipboard
protected fun observeSignalNewNym(tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<String?>): Disposable.Once?

Exported functionality of RuntimeEvent.EXECUTE.CMD.observeSignalNewNym with the running instance of Lifecycle.DestroyableTorRuntime.

Link copied to clipboard
protected open fun onDestroy()
Link copied to clipboard
protected fun postStateChange()

Notifies the AbstractTorServiceUI that this instance had some sort of stateful change so that it may update the UI (if needed).

Link copied to clipboard

Retrieves an Action.Processor which will pipe actions to the running instance of Lifecycle.DestroyableTorRuntime.

Link copied to clipboard

Retrieves a TorCmd.Unprivileged.Processor which will pipe commands to the running instance of Lifecycle.DestroyableTorRuntime.