(
self, parent: ChannelOwner, type: str, guid: str, initializer: Dict
)
| 337 | |
| 338 | class Route(ChannelOwner): |
| 339 | def __init__( |
| 340 | self, parent: ChannelOwner, type: str, guid: str, initializer: Dict |
| 341 | ) -> None: |
| 342 | super().__init__(parent, type, guid, initializer) |
| 343 | self._handling_future: Optional[asyncio.Future["bool"]] = None |
| 344 | self._context: "BrowserContext" = cast("BrowserContext", None) |
| 345 | self._did_throw = False |
| 346 | |
| 347 | def _start_handling(self) -> "asyncio.Future[bool]": |
| 348 | self._handling_future = asyncio.Future() |