(self, packet: "Packet")
| 563 | yield from connection.packets |
| 564 | |
| 565 | def consume_packet(self, packet: "Packet"): |
| 566 | # First run super() to handle the individual packets. |
| 567 | super().consume_packet(packet) |
| 568 | |
| 569 | # Now process any produced packets to be processed through connection handler. |
| 570 | for _packet in super().produce_packets(): |
| 571 | self._connection_handler(_packet) |
| 572 | |
| 573 | def flush(self): |
| 574 | """ |
nothing calls this directly
no test coverage detected