mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
asyncio doc: move coroutine example to the Task page
This commit is contained in:
parent
ea3183f5b8
commit
3e09e32c8a
2 changed files with 32 additions and 19 deletions
|
@ -144,6 +144,10 @@ a different clock than :func:`time.time`.
|
||||||
Return the current time, as a :class:`float` value, according to the
|
Return the current time, as a :class:`float` value, according to the
|
||||||
event loop's internal clock.
|
event loop's internal clock.
|
||||||
|
|
||||||
|
.. seealso::
|
||||||
|
|
||||||
|
The :func:`asyncio.sleep` function.
|
||||||
|
|
||||||
|
|
||||||
Creating connections
|
Creating connections
|
||||||
^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^
|
||||||
|
@ -330,11 +334,10 @@ pool of processes). By default, an event loop uses a thread pool executor
|
||||||
Set the default executor used by :meth:`run_in_executor`.
|
Set the default executor used by :meth:`run_in_executor`.
|
||||||
|
|
||||||
|
|
||||||
Examples
|
.. _asyncio-hello-world-callback:
|
||||||
--------
|
|
||||||
|
|
||||||
Hello World (callback)
|
Example: Hello World (callback)
|
||||||
^^^^^^^^^^^^^^^^^^^^^^
|
-------------------------------
|
||||||
|
|
||||||
Print ``Hello World`` every two seconds, using a callback::
|
Print ``Hello World`` every two seconds, using a callback::
|
||||||
|
|
||||||
|
@ -348,20 +351,7 @@ Print ``Hello World`` every two seconds, using a callback::
|
||||||
print_and_repeat(loop)
|
print_and_repeat(loop)
|
||||||
loop.run_forever()
|
loop.run_forever()
|
||||||
|
|
||||||
|
.. seealso::
|
||||||
|
|
||||||
Hello World (coroutine)
|
:ref:`Hello World example using a coroutine <asyncio-hello-world-coroutine>`.
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^
|
|
||||||
|
|
||||||
Print ``Hello World`` every two seconds, using a coroutine::
|
|
||||||
|
|
||||||
import asyncio
|
|
||||||
|
|
||||||
@asyncio.coroutine
|
|
||||||
def greet_every_two_seconds():
|
|
||||||
while True:
|
|
||||||
print('Hello World')
|
|
||||||
yield from asyncio.sleep(2)
|
|
||||||
|
|
||||||
loop = asyncio.get_event_loop()
|
|
||||||
loop.run_until_complete(greet_every_two_seconds())
|
|
||||||
|
|
||||||
|
|
|
@ -230,3 +230,26 @@ Task functions
|
||||||
This does not raise :exc:`TimeoutError`! Futures that aren't done when
|
This does not raise :exc:`TimeoutError`! Futures that aren't done when
|
||||||
the timeout occurs are returned in the second set.
|
the timeout occurs are returned in the second set.
|
||||||
|
|
||||||
|
|
||||||
|
.. _asyncio-hello-world-coroutine:
|
||||||
|
|
||||||
|
Example: Hello World (coroutine)
|
||||||
|
--------------------------------
|
||||||
|
|
||||||
|
Print ``Hello World`` every two seconds, using a coroutine::
|
||||||
|
|
||||||
|
import asyncio
|
||||||
|
|
||||||
|
@asyncio.coroutine
|
||||||
|
def greet_every_two_seconds():
|
||||||
|
while True:
|
||||||
|
print('Hello World')
|
||||||
|
yield from asyncio.sleep(2)
|
||||||
|
|
||||||
|
loop = asyncio.get_event_loop()
|
||||||
|
loop.run_until_complete(greet_every_two_seconds())
|
||||||
|
|
||||||
|
|
||||||
|
.. seealso::
|
||||||
|
|
||||||
|
:ref:`Hello World example using a callback <asyncio-hello-world-callback>`.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue