Browse Source

Improved catch-all handler documentation

pull/1298/head
Miguel Grinberg 1 year ago
parent
commit
0a54ec6ae4
Failed to extract signature
  1. 5
      docs/client.rst
  2. 5
      docs/server.rst
  3. 27
      src/socketio/base_client.py
  4. 31
      src/socketio/base_server.py

5
docs/client.rst

@ -533,6 +533,11 @@ coroutines if desired::
sio.register_namespace(MyCustomNamespace('/chat')) sio.register_namespace(MyCustomNamespace('/chat'))
A catch-all class-based namespace handler can be defined by passing ``'*'`` as
the namespace during registration::
sio.register_namespace(MyCustomNamespace('*'))
When class-based namespaces are used, any events received by the client are When class-based namespaces are used, any events received by the client are
dispatched to a method named as the event name with the ``on_`` prefix. For dispatched to a method named as the event name with the ``on_`` prefix. For
example, event ``my_event`` will be handled by a method named ``on_my_event``. example, event ``my_event`` will be handled by a method named ``on_my_event``.

5
docs/server.rst

@ -361,6 +361,11 @@ if desired::
sio.register_namespace(MyCustomNamespace('/test')) sio.register_namespace(MyCustomNamespace('/test'))
A catch-all class-based namespace handler can be defined by passing ``'*'`` as
the namespace during registration::
sio.register_namespace(MyCustomNamespace('*'))
When class-based namespaces are used, any events received by the server are When class-based namespaces are used, any events received by the server are
dispatched to a method named as the event name with the ``on_`` prefix. For dispatched to a method named as the event name with the ``on_`` prefix. For
example, event ``my_event`` will be handled by a method named ``on_my_event``. example, event ``my_event`` will be handled by a method named ``on_my_event``.

27
src/socketio/base_client.py

@ -106,13 +106,15 @@ class BaseClient:
:param event: The event name. It can be any string. The event names :param event: The event name. It can be any string. The event names
``'connect'``, ``'message'`` and ``'disconnect'`` are ``'connect'``, ``'message'`` and ``'disconnect'`` are
reserved and should not be used. reserved and should not be used. The ``'*'`` event name
can be used to define a catch-all event handler.
:param handler: The function that should be invoked to handle the :param handler: The function that should be invoked to handle the
event. When this parameter is not given, the method event. When this parameter is not given, the method
acts as a decorator for the handler function. acts as a decorator for the handler function.
:param namespace: The Socket.IO namespace for the event. If this :param namespace: The Socket.IO namespace for the event. If this
argument is omitted the handler is associated with argument is omitted the handler is associated with
the default namespace. the default namespace. A catch-all namespace can be
defined by passing ``'*'`` as the namespace.
Example usage:: Example usage::
@ -127,12 +129,21 @@ class BaseClient:
sio.send( 'response') sio.send( 'response')
sio.on('message', message_handler) sio.on('message', message_handler)
The ``'connect'`` event handler receives no arguments. The The arguments passed to the handler function depend on the event type:
``'message'`` handler and handlers for custom event names receive the
message payload as only argument. Any values returned from a message - The ``'connect'`` event handler does not take arguments.
handler will be passed to the client's acknowledgement callback - The ``'disconnect'`` event handler does not take arguments.
function if it exists. The ``'disconnect'`` handler does not take - The ``'message'`` handler and handlers for custom event names receive
arguments. the message payload as only argument. Any values returned from a
message handler will be passed to the client's acknowledgement
callback function if it exists.
- A catch-all event handler receives the event name as first argument,
followed by any arguments specific to the event.
- A catch-all namespace event handler receives the namespace as first
argument, followed by any arguments specific to the event.
- A combined catch-all namespace and catch-all event handler receives
the event name as first argument and the namespace as second
argument, followed by any arguments specific to the event.
""" """
namespace = namespace or '/' namespace = namespace or '/'

31
src/socketio/base_server.py

@ -71,13 +71,15 @@ class BaseServer:
:param event: The event name. It can be any string. The event names :param event: The event name. It can be any string. The event names
``'connect'``, ``'message'`` and ``'disconnect'`` are ``'connect'``, ``'message'`` and ``'disconnect'`` are
reserved and should not be used. reserved and should not be used. The ``'*'`` event name
can be used to define a catch-all event handler.
:param handler: The function that should be invoked to handle the :param handler: The function that should be invoked to handle the
event. When this parameter is not given, the method event. When this parameter is not given, the method
acts as a decorator for the handler function. acts as a decorator for the handler function.
:param namespace: The Socket.IO namespace for the event. If this :param namespace: The Socket.IO namespace for the event. If this
argument is omitted the handler is associated with argument is omitted the handler is associated with
the default namespace. the default namespace. A catch-all namespace can be
defined by passing ``'*'`` as the namespace.
Example usage:: Example usage::
@ -94,14 +96,23 @@ class BaseServer:
sio.send(sid, 'response') sio.send(sid, 'response')
socket_io.on('message', namespace='/chat', handler=message_handler) socket_io.on('message', namespace='/chat', handler=message_handler)
The handler function receives the ``sid`` (session ID) for the The arguments passed to the handler function depend on the event type:
client as first argument. The ``'connect'`` event handler receives the
WSGI environment as a second argument, and can return ``False`` to - The ``'connect'`` event handler receives the ``sid`` (session ID) for
reject the connection. The ``'message'`` handler and handlers for the client and the WSGI environment dictionary as arguments.
custom event names receive the message payload as a second argument. - The ``'disconnect'`` handler receives the ``sid`` for the client as
Any values returned from a message handler will be passed to the only argument.
client's acknowledgement callback function if it exists. The - The ``'message'`` handler and handlers for custom event names receive
``'disconnect'`` handler does not take a second argument. the ``sid`` for the client and the message payload as arguments. Any
values returned from a message handler will be passed to the client's
acknowledgement callback function if it exists.
- A catch-all event handler receives the event name as first argument,
followed by any arguments specific to the event.
- A catch-all namespace event handler receives the namespace as first
argument, followed by any arguments specific to the event.
- A combined catch-all namespace and catch-all event handler receives
the event name as first argument and the namespace as second
argument, followed by any arguments specific to the event.
""" """
namespace = namespace or '/' namespace = namespace or '/'

Loading…
Cancel
Save