runtimepy.task.basic.manager
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/task/basic/manager.py

A module implementing a periodic-task manager.

 
Modules
       
asyncio

 
Classes
       
typing.Generic(builtins.object)
PeriodicTaskManager

 
class PeriodicTaskManager(typing.Generic)
    PeriodicTaskManager() -> None
 
A class for managing periodic tasks as a single group.
 
 
Method resolution order:
PeriodicTaskManager
typing.Generic
builtins.object

Methods defined here:
__getitem__(self, name: str) -> ~T
Get a task by name.
__init__(self) -> None
Initialize this instance.
register(self, task: ~T, period_s: float = None) -> bool
Register a periodic task.
running(self, stop_sig: asyncio.locks.Event = None) -> AsyncIterator[NoneType]
Run tasks as an async context.
async start(self, stop_sig: asyncio.locks.Event = None) -> None
Ensure tasks are started.
async stop(self) -> None
Ensure tasks are stopped.

Readonly properties defined here:
tasks
Iterate over tasks.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Data and other attributes defined here:
__orig_bases__ = (typing.Generic[~T],)
__parameters__ = (~T,)

Class methods inherited from typing.Generic:
__class_getitem__(...) from builtins.type
Parameterizes a generic class.
 
At least, parameterizing a generic class is the *main* thing this
method does. For example, for some generic class `Foo`, this is called
when we do `Foo[int]` - there, with `cls=Foo` and `params=int`.
 
However, note that this method is also called when defining generic
classes in the first place with `class Foo[T]: ...`.
__init_subclass__(...) from builtins.type
Function to initialize subclasses.

 
Data
        T = ~T