获取事件循环
(self)
| 84 | self._loop = loop |
| 85 | |
| 86 | def get_loop(self) -> Optional[asyncio.AbstractEventLoop]: |
| 87 | """获取事件循环""" |
| 88 | return self._loop |
| 89 | |
| 90 | def is_cancelled(self, task_uuid: str) -> bool: |
| 91 | """检查任务是否已取消""" |
no outgoing calls
no test coverage detected