diff --git a/src/socketio/asyncio_client.py b/src/socketio/asyncio_client.py index efb28b0..e98f337 100644 --- a/src/socketio/asyncio_client.py +++ b/src/socketio/asyncio_client.py @@ -254,6 +254,12 @@ class AsyncClient(client.Client): async def call(self, event, data=None, namespace=None, timeout=60): """Emit a custom event to a client and wait for the response. + This method issues an emit with a callback and waits for the callback + to be invoked before returning. If the callback isn't invoked before + the timeout, then a ``TimeoutError`` exception is raised. If the + Socket.IO connection drops during the wait, this method still waits + until the specified timeout. + :param event: The event name. It can be any string. The event names ``'connect'``, ``'message'`` and ``'disconnect'`` are reserved and should not be used. diff --git a/src/socketio/asyncio_server.py b/src/socketio/asyncio_server.py index 4441079..a43430c 100644 --- a/src/socketio/asyncio_server.py +++ b/src/socketio/asyncio_server.py @@ -210,6 +210,12 @@ class AsyncServer(server.Server): timeout=60, **kwargs): """Emit a custom event to a client and wait for the response. + This method issues an emit with a callback and waits for the callback + to be invoked before returning. If the callback isn't invoked before + the timeout, then a ``TimeoutError`` exception is raised. If the + Socket.IO connection drops during the wait, this method still waits + until the specified timeout. + :param event: The event name. It can be any string. The event names ``'connect'``, ``'message'`` and ``'disconnect'`` are reserved and should not be used. diff --git a/src/socketio/client.py b/src/socketio/client.py index 2c1e164..0d0b385 100644 --- a/src/socketio/client.py +++ b/src/socketio/client.py @@ -430,6 +430,12 @@ class Client(object): def call(self, event, data=None, namespace=None, timeout=60): """Emit a custom event to a client and wait for the response. + This method issues an emit with a callback and waits for the callback + to be invoked before returning. If the callback isn't invoked before + the timeout, then a ``TimeoutError`` exception is raised. If the + Socket.IO connection drops during the wait, this method still waits + until the specified timeout. + :param event: The event name. It can be any string. The event names ``'connect'``, ``'message'`` and ``'disconnect'`` are reserved and should not be used. diff --git a/src/socketio/server.py b/src/socketio/server.py index 5b070d5..b8ee435 100644 --- a/src/socketio/server.py +++ b/src/socketio/server.py @@ -355,6 +355,12 @@ class Server(object): timeout=60, **kwargs): """Emit a custom event to a client and wait for the response. + This method issues an emit with a callback and waits for the callback + to be invoked before returning. If the callback isn't invoked before + the timeout, then a ``TimeoutError`` exception is raised. If the + Socket.IO connection drops during the wait, this method still waits + until the specified timeout. + :param event: The event name. It can be any string. The event names ``'connect'``, ``'message'`` and ``'disconnect'`` are reserved and should not be used.