Browse Source

Improve documentation on start_background_task() function

pull/801/head
Miguel Grinberg 4 years ago
parent
commit
4f5bf1e989
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 4
      src/socketio/asyncio_client.py
  2. 2
      src/socketio/asyncio_server.py
  3. 6
      src/socketio/client.py
  4. 6
      src/socketio/server.py

4
src/socketio/asyncio_client.py

@ -311,9 +311,7 @@ class AsyncClient(client.Client):
:param args: arguments to pass to the function.
:param kwargs: keyword arguments to pass to the function.
This function returns an object compatible with the `Thread` class in
the Python standard library. The `start()` method on this object is
already called by this function.
The return value is a ``asyncio.Task`` object.
"""
return self.eio.start_background_task(target, *args, **kwargs)

2
src/socketio/asyncio_server.py

@ -396,8 +396,6 @@ class AsyncServer(server.Server):
:param kwargs: keyword arguments to pass to the function.
The return value is a ``asyncio.Task`` object.
Note: this method is a coroutine.
"""
return self.eio.start_background_task(target, *args, **kwargs)

6
src/socketio/client.py

@ -500,9 +500,9 @@ class Client(object):
:param args: arguments to pass to the function.
:param kwargs: keyword arguments to pass to the function.
This function returns an object compatible with the `Thread` class in
the Python standard library. The `start()` method on this object is
already called by this function.
This function returns an object that represents the background task,
on which the ``join()`` methond can be invoked to wait for the task to
complete.
"""
return self.eio.start_background_task(target, *args, **kwargs)

6
src/socketio/server.py

@ -599,9 +599,9 @@ class Server(object):
:param args: arguments to pass to the function.
:param kwargs: keyword arguments to pass to the function.
This function returns an object compatible with the `Thread` class in
the Python standard library. The `start()` method on this object is
already called by this function.
This function returns an object that represents the background task,
on which the ``join()`` methond can be invoked to wait for the task to
complete.
"""
return self.eio.start_background_task(target, *args, **kwargs)

Loading…
Cancel
Save