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:
Factory: To be used for all TorRuntime.ServiceFactory instances and injected into a service object upon service creation.
Context:
SINGLETON
AbstractTorServiceUI: To be created via Factory.createProtected upon service start.
Context:
SERVICE
InstanceState: To be created via AbstractTorServiceUI.createProtected for every instance of Lifecycle.DestroyableTorRuntime operating within the service object.
Context:
INSTANCE
See also
Throws
on instantiation if args were not those which were passed to Factory.createProtected. See Args.
Inheritors
Types
Core commonMain
abstraction for passing platform specific arguments, in an encapsulated manner, when instantiating new instances of AbstractTorServiceUI components.
Core commonMain
abstraction for a Factory class which is responsible for instantiating new instances of AbstractTorServiceUI when requested by the service object.
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
The default Config that was defined for Factory.defaultConfig
Returns the currently displayed InstanceState.
All InstanceState currently operating within this UI "container".
A CoroutineScope which is configured as a child to the service object's CoroutineScope which utilizes Dispatchers.Main
Functions
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.
Shifts the pointer to the "right" and calls onRender with the new parameters. If no next InstanceState is available, then nothing occurs.
Shifts the pointer to the "left" and calls onRender with the new parameters. If no previous InstanceState is available, then nothing occurs.