Factory
abstract class Factory<A : AbstractTorServiceUI.Args.UI, C : AbstractTorServiceUI.Config, IS : AbstractTorServiceUI.InstanceState<C>, UI : AbstractTorServiceUI<A, C, IS>>(source)
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
Enable/disable RuntimeEvent.LOG.DEBUG messages for UI components.
Link copied to clipboard
The default Config to use if one was not specified when TorRuntime.Environment was instantiated.
Functions
Link copied to clipboard
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.