class documentation
class AsyncTaskMixin:
Mixin for reliable tracking of fire-and-forget asyncio tasks.
Avoids such tasks disappearing while executing when garbage collected (https://docs.python.org/3/library/asyncio-task.html#creating-tasks).
| Async Method | _cancel |
Cancel and await all tracked tasks. |
| Method | _create |
Schedule and track a background coroutine. |
| Instance Variable | __tasks |
Undocumented |
| Property | _pending |
Return currently running tracked tasks. |