检查任务是否已取消
(self, task_uuid: str)
| 88 | return self._loop |
| 89 | |
| 90 | def is_cancelled(self, task_uuid: str) -> bool: |
| 91 | """检查任务是否已取消""" |
| 92 | return _task_cancelled.get(task_uuid, False) |
| 93 | |
| 94 | def cancel_task(self, task_uuid: str): |
| 95 | """取消任务""" |
no test coverage detected