Yields all pending commands for the upper QUIC layer.
(self)
| 308 | self._after_send(stream_id, end_stream=True) |
| 309 | |
| 310 | def transmit(self) -> layer.CommandGenerator[None]: |
| 311 | """Yields all pending commands for the upper QUIC layer.""" |
| 312 | |
| 313 | while self._mock.pending_commands: |
| 314 | yield self._mock.pending_commands.pop(0) |
| 315 | |
| 316 | |
| 317 | __all__ = [ |