Triggers plugin to finish processing any remaining packets that are being held onto.
(self)
| 159 | yield self._packet_queue.pop(0) |
| 160 | |
| 161 | def flush(self): |
| 162 | """ |
| 163 | Triggers plugin to finish processing any remaining packets that are being held onto. |
| 164 | """ |
| 165 | # By default we don't need to do anything because any consumed packet is placed onto the queue |
| 166 | # right away. |
| 167 | pass |
| 168 | |
| 169 | def purge(self): |
| 170 | """ |
no outgoing calls
no test coverage detected