Triggers plugin to finish processing any remaining packets that are being held onto.
(self)
| 571 | self._connection_handler(_packet) |
| 572 | |
| 573 | def flush(self): |
| 574 | """ |
| 575 | Triggers plugin to finish processing any remaining packets that are being held onto. |
| 576 | """ |
| 577 | super().flush() |
| 578 | # Call cleanup_connections() to force close any remaining open connections so they are |
| 579 | # on the queue ready to be passed down the chain. |
| 580 | self._cleanup_connections() |
| 581 | |
| 582 | def _connection_handler(self, packet: "Packet"): |
| 583 | """ |
nothing calls this directly
no test coverage detected