Factory

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

Implementations are encouraged to keep it as a subclass within, and use a private constructor for, their UI implementations.

See also

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

Inheritors

Properties

Link copied to clipboard
@Volatile
var debug: Boolean

Enable/disable RuntimeEvent.LOG.DEBUG messages for UI components.

Link copied to clipboard
@JvmField
val defaultConfig: C

The default Config to use if one was not specified when TorRuntime.Environment was instantiated.

Functions

Link copied to clipboard
protected abstract fun createProtected(args: A): UI

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