runtimepy.net.server.struct
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/net/server/struct/__init__.py

A module implementing a structure for tracking UI state and metrics.

 
Package Contents
       

 
Classes
       
runtimepy.mixins.psutil.PsutilMixin(builtins.object)
UiState(runtimepy.net.arbiter.info.RuntimeStruct, runtimepy.mixins.psutil.PsutilMixin)
runtimepy.net.arbiter.info.RuntimeStruct(runtimepy.struct.RuntimeStructBase, abc.ABC)
UiState(runtimepy.net.arbiter.info.RuntimeStruct, runtimepy.mixins.psutil.PsutilMixin)

 
class UiState(runtimepy.net.arbiter.info.RuntimeStruct, runtimepy.mixins.psutil.PsutilMixin)
    UiState(name: str, config: Dict[str, Union[str, int, float, bool, NoneType, Dict[str, Union[str, int, float, bool, NoneType]], List[Union[str, int, float, bool, NoneType]]]]) -> None
 
A sample runtime structure.
 
 
Method resolution order:
UiState
runtimepy.net.arbiter.info.RuntimeStruct
runtimepy.struct.RuntimeStructBase
runtimepy.mixins.logging.LoggerMixinLevelControl
vcorelib.logging.LoggerMixin
runtimepy.mixins.environment.ChannelEnvironmentMixin
abc.ABC
runtimepy.mixins.psutil.PsutilMixin
builtins.object

Methods defined here:
init_env(self) -> None
Initialize this sample environment.
poll(self) -> None
A method that other runtime entities can call to perform canonical
updates to this struct's environment.

Static methods defined here:
singleton() -> Optional[ForwardRef('UiState')]
Attempt to get the singleton UI struct instance.

Data and other attributes defined here:
__abstractmethods__ = frozenset()
__annotations__ = {'frame_period_ms': <class 'runtimepy.primitives.float.FloatPrimitive'>, 'json_metrics': <class 'runtimepy.metrics.connection.ConnectionMetrics'>, 'time_ms': <class 'runtimepy.primitives.float.FloatPrimitive'>}

Methods inherited from runtimepy.net.arbiter.info.RuntimeStruct:
async build(self, app: 'AppInfo') -> None
Build a struct instance's channel environment.

Methods inherited from runtimepy.struct.RuntimeStructBase:
__init__(self, name: str, config: Dict[str, Union[str, int, float, bool, NoneType, Dict[str, Union[str, int, float, bool, NoneType]], List[Union[str, int, float, bool, NoneType]]]]) -> None
Initialize this instance.

Methods inherited from runtimepy.mixins.logging.LoggerMixinLevelControl:
setup_level_channel(self, env: runtimepy.channel.environment.ChannelEnvironment, name: str = 'log_level', initial: str = 'info', description: str = 'Text-log level filter for this environment.') -> None
Add a commandable log-level channel to the environment.

Methods inherited from vcorelib.logging.LoggerMixin:
log_time(self, message: str, *args, level: int = 20, reminder: bool = False, **kwargs) -> Iterator[NoneType]
A simple wrapper.

Data descriptors inherited from vcorelib.logging.LoggerMixin:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Methods inherited from runtimepy.mixins.environment.ChannelEnvironmentMixin:
register_channel_metrics(self, name: str, channel: runtimepy.metrics.channel.ChannelMetrics, verb: str) -> None
Register individual channel metrics.
register_connection_metrics(self, metrics: runtimepy.metrics.connection.ConnectionMetrics, namespace: str = 'metrics') -> None
Register connection metrics.
register_task_metrics(self, metrics: runtimepy.metrics.task.PeriodicTaskMetrics, namespace: str = 'metrics') -> None
Register periodic task metrics.

Methods inherited from runtimepy.mixins.psutil.PsutilMixin:
init_psutil(self, env: runtimepy.channel.environment.ChannelEnvironment) -> None
Initialize psutil-based metrics.
poll_psutil(self, weight: float) -> None
Poll psutil-based metrics.

 
Data
        Optional = typing.Optional
UI = None
__annotations__ = {'UI': typing.Optional[ForwardRef('UiState')]}