(self, is_ctxmanager: bool = False)
| 112 | |
| 113 | @abc.abstractmethod |
| 114 | async def start(self, is_ctxmanager: bool = False) -> _T_co: |
| 115 | raise NotImplementedError() |
| 116 | |
| 117 | def __await__(self) -> Generator[Any, Any, _T_co]: |
| 118 | return self.start().__await__() |
no outgoing calls