AbstractTorServiceUI

Core commonMain abstraction which enables implementors the ability to create a fully customized notification for the running instances of TorRuntime as they operate within a service object.

This class' API is designed as follows:

See also

io.matthewnelson.kmp.tor.runtime.service.TorServiceUI
io.matthewnelson.kmp.tor.runtime.service.ui.KmpTorServiceUI

Throws

IllegalStateException

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

Inheritors

Types

Link copied to clipboard
sealed class Args

Core commonMain abstraction for passing platform specific arguments, in an encapsulated manner, when instantiating new instances of AbstractTorServiceUI components.

Link copied to clipboard
protected object Companion
Link copied to clipboard
abstract class Config @ExperimentalKmpTorApi constructor(fields: Map<String, Any?>)

Core commonMain abstraction for holding UI customization input from consumers of kmp-tor-service.

Link copied to clipboard

Core commonMain abstraction for a Factory class which is responsible for instantiating new instances of AbstractTorServiceUI when requested by the service object.

Link copied to clipboard
abstract class InstanceState<C : AbstractTorServiceUI.Config> @ExperimentalKmpTorApi constructor(args: AbstractTorServiceUI.Args.Instance) : FileID

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.

Properties

Link copied to clipboard
@JvmField
protected val defaultConfig: C

The default Config that was defined for Factory.defaultConfig

Link copied to clipboard
@get:JvmName(name = "displayed")
protected val displayed: IS?

Returns the currently displayed InstanceState.

Link copied to clipboard
@get:JvmName(name = "instanceStates")
protected val instanceStates: Collection<IS>

All InstanceState currently operating within this UI "container".

Link copied to clipboard
@JvmField
protected val serviceChildScope: CoroutineScope

A CoroutineScope which is configured as a child to the service object's CoroutineScope which utilizes Dispatchers.Main

Functions

Link copied to clipboard

Implementors MUST utilize args to instantiate a new instance of the InstanceState implementation. If args were not consumed by the returned instance of InstanceState, an exception will be thrown by createProtected.

Link copied to clipboard
operator override fun equals(other: Any?): Boolean
Link copied to clipboard
override fun hashCode(): Int
Link copied to clipboard
fun isDestroyed(): Boolean
Link copied to clipboard
protected open fun onDestroy()
Link copied to clipboard
protected abstract fun onRender(displayed: IS, hasPrevious: Boolean, hasNext: Boolean)

Indicates there was a stateful change that requires an update to the UI.

Link copied to clipboard
protected fun selectNext()

Shifts the pointer to the "right" and calls onRender with the new parameters. If no next InstanceState is available, then nothing occurs.

Link copied to clipboard
protected fun selectPrevious()

Shifts the pointer to the "left" and calls onRender with the new parameters. If no previous InstanceState is available, then nothing occurs.