runtimepy.tui.task
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/tui/task.py

A task entry-point for a text user-interface.

 
Classes
       
runtimepy.task.asynchronous.AsyncTask(vcorelib.logging.LoggerMixin)
TuiTask

 
class TuiTask(runtimepy.task.asynchronous.AsyncTask)
    TuiTask(name: str, period_s: float, env: runtimepy.channel.environment.ChannelEnvironment, average_depth: int = 10, max_iterations: int = 0) -> None
 
A task implementation for a text user-interface.
 
 
Method resolution order:
TuiTask
runtimepy.task.asynchronous.AsyncTask
vcorelib.logging.LoggerMixin
builtins.object

Methods defined here:
async dispatch(self, *_, **__) -> bool
Dispatch this task.
async init(self, *args, **__) -> bool
Initialize this task.
init_channels(self, env: runtimepy.channel.environment.ChannelEnvironment) -> None
Initialize task-specific channels.

Data and other attributes defined here:
__annotations__ = {}

Methods inherited from runtimepy.task.asynchronous.AsyncTask:
__init__(self, name: str, period_s: float, env: runtimepy.channel.environment.ChannelEnvironment, average_depth: int = 10, max_iterations: int = 0) -> None
Initialize this asynchronous task.
disable(self) -> None
Disable this task.
enable(self) -> None
Enable this task.
log_metrics(self) -> None
Log information related to metrics channels.
reset_metrics(self) -> None
Reset metrics channel values.
async run(self, *args, stop_sig: asyncio.locks.Event = None, **kwargs) -> None
Run this task while it's enabled.

Readonly properties inherited from runtimepy.task.asynchronous.AsyncTask:
rate_str
Get this periodic's rate as a string.

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