Browse Source

Improve start_background_task example (Fixes #647)

pull/683/head
Miguel Grinberg 4 years ago
parent
commit
ef4ae900c5
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 4
      docs/client.rst

4
docs/client.rst

@ -277,7 +277,7 @@ start a custom background task::
# do some background work here! # do some background work here!
pass pass
sio.start_background_task(my_background_task, 123) task = sio.start_background_task(my_background_task, 123)
The arguments passed to this method are the background function and any The arguments passed to this method are the background function and any
positional or keyword arguments to invoke the function with. positional or keyword arguments to invoke the function with.
@ -288,7 +288,7 @@ Here is the ``asyncio`` version::
# do some background work here! # do some background work here!
pass pass
sio.start_background_task(my_background_task, 123) task = sio.start_background_task(my_background_task, 123)
Note that this function is not a coroutine, since it does not wait for the Note that this function is not a coroutine, since it does not wait for the
background function to end. The background function must be a coroutine. background function to end. The background function must be a coroutine.

Loading…
Cancel
Save