(self, n: int = -1, timeout: Optional[float] = None)
| 24 | class IOConnection(ABC): |
| 25 | @abstractmethod |
| 26 | async def read(self, n: int = -1, timeout: Optional[float] = None) -> bytes: |
| 27 | pass |
| 28 | |
| 29 | @abstractmethod |
| 30 | async def write(self, data: bytes) -> None: |
no outgoing calls