diff options
Diffstat (limited to 'docs/library/uasyncio.rst')
-rw-r--r-- | docs/library/uasyncio.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/library/uasyncio.rst b/docs/library/uasyncio.rst index ebe0c34eb..ff3232ebd 100644 --- a/docs/library/uasyncio.rst +++ b/docs/library/uasyncio.rst @@ -251,13 +251,17 @@ Event Loop .. method:: Loop.run_forever() - Run the event loop forever. + Run the event loop until `stop()` is called. .. method:: Loop.run_until_complete(awaitable) Run the given *awaitable* until it completes. If *awaitable* is not a task then it will be promoted to one. +.. method:: Loop.stop() + + Stop the event loop. + .. method:: Loop.close() Close the event loop. |