From 8e734573a9f792d8dbfb143cba1f10056930f0e9 Mon Sep 17 00:00:00 2001 From: Kaiyu Shi Date: Tue, 23 May 2017 20:15:19 +0800 Subject: [PATCH] The usage of class-based namespace There should be an additional `self` argument passed to each member function of custom Namespaces. --- docs/index.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 8c9856f..b4994ed 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -293,13 +293,13 @@ that belong to a namespace can be created as methods of a subclass of :class:`socketio.Namespace`:: class MyCustomNamespace(socketio.Namespace): - def on_connect(sid, environ): + def on_connect(self, sid, environ): pass - def on_disconnect(sid): + def on_disconnect(self, sid): pass - def on_my_event(sid, data): + def on_my_event(self, sid, data): self.emit('my_response', data) sio.register_namespace(MyCustomNamespace('/test')) @@ -309,13 +309,13 @@ For asyncio based severs, namespaces must inherit from methods or coroutines:: class MyCustomNamespace(socketio.AsyncNamespace): - def on_connect(sid, environ): + def on_connect(self, sid, environ): pass - def on_disconnect(sid): + def on_disconnect(self, sid): pass - async def on_my_event(sid, data): + async def on_my_event(self, sid, data): await self.emit('my_response', data) sio.register_namespace(MyCustomNamespace('/test'))