MCPcopy Create free account
hub / github.com/miguelgrinberg/python-socketio / _handle_eio_connect

Method _handle_eio_connect

src/socketio/server.py:637–642  ·  view source on GitHub ↗

Handle the Engine.IO connection event.

(self, eio_sid, environ)

Source from the content-addressed store, hash-verified

635 return self.not_handled
636
637 def _handle_eio_connect(self, eio_sid, environ):
638 """Handle the Engine.IO connection event."""
639 if not self.manager_initialized:
640 self.manager_initialized = True
641 self.manager.initialize()
642 self.environ[eio_sid] = environ
643
644 def _handle_eio_message(self, eio_sid, data):
645 """Dispatch Engine.IO messages."""

Calls 1

initializeMethod · 0.45