得到一个平台的运行实例,需要返回一个协程对象。
(self)
| 120 | |
| 121 | @abc.abstractmethod |
| 122 | def run(self) -> Coroutine[Any, Any, None]: |
| 123 | """得到一个平台的运行实例,需要返回一个协程对象。""" |
| 124 | raise NotImplementedError |
| 125 | |
| 126 | async def terminate(self) -> None: |
| 127 | """终止一个平台的运行实例。""" |
no outgoing calls
no test coverage detected