(self, name: str, timeout: float | None)
| 64 | connection: _IPCHandle |
| 65 | |
| 66 | def __init__(self, name: str, timeout: float | None) -> None: |
| 67 | self.name = name |
| 68 | self.timeout = timeout |
| 69 | self.message_size: int | None = None |
| 70 | self.buffer = bytearray() |
| 71 | |
| 72 | def frame_from_buffer(self) -> bytes | None: |
| 73 | """Return a full frame from the bytes we have in the buffer.""" |