Handle continuation frame (already processed in _read_frame).
(self, payload)
| 388 | self._close_event.set() |
| 389 | |
| 390 | async def _handle_continuation(self, payload): # pylint: disable=unused-argument |
| 391 | """Handle continuation frame (already processed in _read_frame).""" |
| 392 | # This is called for partial fragments, nothing to do here |
| 393 | |
| 394 | async def _send_frame(self, opcode, payload): |
| 395 | """Send a WebSocket frame. |