Send a raw Engine.IO packet to a client.
(self, eio_sid, eio_pkt)
| 512 | self.eio.send(eio_sid, encoded_packet) |
| 513 | |
| 514 | def _send_eio_packet(self, eio_sid, eio_pkt): |
| 515 | """Send a raw Engine.IO packet to a client.""" |
| 516 | self.eio.send_packet(eio_sid, eio_pkt) |
| 517 | |
| 518 | def _handle_connect(self, eio_sid, namespace, data): |
| 519 | """Handle a client connection request.""" |