(self, context: Context, conn: Connection)
| 54 | ReceiveEndOfMessage: type[RequestEndOfMessage | ResponseEndOfMessage] |
| 55 | |
| 56 | def __init__(self, context: Context, conn: Connection): |
| 57 | super().__init__(context, conn) |
| 58 | self.buf = ReceiveBuffer() |
| 59 | |
| 60 | @abc.abstractmethod |
| 61 | def send(self, event: HttpEvent) -> layer.CommandGenerator[None]: |
nothing calls this directly
no test coverage detected