R David Murray | 6a14381 | 2013-12-20 14:37:39 -0500 | [diff] [blame] | 1 | .. currentmodule:: asyncio |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 2 | |
| 3 | Tasks and coroutines |
| 4 | ==================== |
| 5 | |
lf | 627d2c8 | 2017-07-25 17:03:51 -0600 | [diff] [blame] | 6 | **Source code:** :source:`Lib/asyncio/tasks.py` |
| 7 | |
| 8 | **Source code:** :source:`Lib/asyncio/coroutines.py` |
| 9 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 10 | .. _coroutine: |
| 11 | |
| 12 | Coroutines |
| 13 | ---------- |
| 14 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 15 | Coroutines used with :mod:`asyncio` may be implemented using the |
| 16 | :keyword:`async def` statement, or by using :term:`generators <generator>`. |
| 17 | The :keyword:`async def` type of coroutine was added in Python 3.5, and |
| 18 | is recommended if there is no need to support older Python versions. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 19 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 20 | Generator-based coroutines should be decorated with :func:`@asyncio.coroutine |
| 21 | <asyncio.coroutine>`, although this is not strictly enforced. |
| 22 | The decorator enables compatibility with :keyword:`async def` coroutines, |
| 23 | and also serves as documentation. Generator-based |
| 24 | coroutines use the ``yield from`` syntax introduced in :pep:`380`, |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 25 | instead of the original ``yield`` syntax. |
| 26 | |
| 27 | The word "coroutine", like the word "generator", is used for two |
| 28 | different (though related) concepts: |
| 29 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 30 | - The function that defines a coroutine |
| 31 | (a function definition using :keyword:`async def` or |
Victor Stinner | 59759ff | 2014-01-16 19:30:21 +0100 | [diff] [blame] | 32 | decorated with ``@asyncio.coroutine``). If disambiguation is needed |
Victor Stinner | 1ad5afc | 2014-01-30 00:18:50 +0100 | [diff] [blame] | 33 | we will call this a *coroutine function* (:func:`iscoroutinefunction` |
| 34 | returns ``True``). |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 35 | |
| 36 | - The object obtained by calling a coroutine function. This object |
| 37 | represents a computation or an I/O operation (usually a combination) |
| 38 | that will complete eventually. If disambiguation is needed we will |
Victor Stinner | 1ad5afc | 2014-01-30 00:18:50 +0100 | [diff] [blame] | 39 | call it a *coroutine object* (:func:`iscoroutine` returns ``True``). |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 40 | |
| 41 | Things a coroutine can do: |
| 42 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 43 | - ``result = await future`` or ``result = yield from future`` -- |
| 44 | suspends the coroutine until the |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 45 | future is done, then returns the future's result, or raises an |
| 46 | exception, which will be propagated. (If the future is cancelled, |
| 47 | it will raise a ``CancelledError`` exception.) Note that tasks are |
| 48 | futures, and everything said about futures also applies to tasks. |
| 49 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 50 | - ``result = await coroutine`` or ``result = yield from coroutine`` -- |
| 51 | wait for another coroutine to |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 52 | produce a result (or raise an exception, which will be propagated). |
| 53 | The ``coroutine`` expression must be a *call* to another coroutine. |
| 54 | |
| 55 | - ``return expression`` -- produce a result to the coroutine that is |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 56 | waiting for this one using :keyword:`await` or ``yield from``. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 57 | |
| 58 | - ``raise exception`` -- raise an exception in the coroutine that is |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 59 | waiting for this one using :keyword:`await` or ``yield from``. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 60 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 61 | Calling a coroutine does not start its code running -- |
| 62 | the coroutine object returned by the call doesn't do anything until you |
| 63 | schedule its execution. There are two basic ways to start it running: |
| 64 | call ``await coroutine`` or ``yield from coroutine`` from another coroutine |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 65 | (assuming the other coroutine is already running!), or schedule its execution |
Yury Selivanov | 7c7605f | 2018-09-11 09:54:40 -0700 | [diff] [blame] | 66 | using the :func:`ensure_future` function or the :meth:`loop.create_task` |
Victor Stinner | 337e03f | 2014-08-11 01:11:13 +0200 | [diff] [blame] | 67 | method. |
| 68 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 69 | |
| 70 | Coroutines (and tasks) can only run when the event loop is running. |
| 71 | |
Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 72 | .. decorator:: coroutine |
| 73 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 74 | Decorator to mark generator-based coroutines. This enables |
| 75 | the generator use :keyword:`!yield from` to call :keyword:`async |
| 76 | def` coroutines, and also enables the generator to be called by |
| 77 | :keyword:`async def` coroutines, for instance using an |
| 78 | :keyword:`await` expression. |
Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 79 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 80 | There is no need to decorate :keyword:`async def` coroutines themselves. |
| 81 | |
| 82 | If the generator is not yielded from before it is destroyed, an error |
Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 83 | message is logged. See :ref:`Detect coroutines never scheduled |
| 84 | <asyncio-coroutine-not-scheduled>`. |
| 85 | |
Yury Selivanov | 37f15bc | 2014-02-20 16:20:44 -0500 | [diff] [blame] | 86 | .. note:: |
| 87 | |
| 88 | In this documentation, some methods are documented as coroutines, |
| 89 | even if they are plain Python functions returning a :class:`Future`. |
| 90 | This is intentional to have a freedom of tweaking the implementation |
| 91 | of these functions in the future. If such a function is needed to be |
Yury Selivanov | 04356e1 | 2015-06-30 22:13:22 -0400 | [diff] [blame] | 92 | used in a callback-style code, wrap its result with :func:`ensure_future`. |
Yury Selivanov | 37f15bc | 2014-02-20 16:20:44 -0500 | [diff] [blame] | 93 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 94 | |
Elvis Pranskevichus | 63536bd | 2018-05-19 23:15:06 -0400 | [diff] [blame] | 95 | .. function:: run(coro, \*, debug=False) |
Yury Selivanov | 02a0a19 | 2017-12-14 09:42:21 -0500 | [diff] [blame] | 96 | |
| 97 | This function runs the passed coroutine, taking care of |
| 98 | managing the asyncio event loop and finalizing asynchronous |
| 99 | generators. |
| 100 | |
| 101 | This function cannot be called when another asyncio event loop is |
| 102 | running in the same thread. |
| 103 | |
| 104 | If debug is True, the event loop will be run in debug mode. |
| 105 | |
| 106 | This function always creates a new event loop and closes it at |
| 107 | the end. It should be used as a main entry point for asyncio |
| 108 | programs, and should ideally only be called once. |
| 109 | |
| 110 | .. versionadded:: 3.7 |
Yury Selivanov | d8d715f | 2018-05-17 13:44:00 -0400 | [diff] [blame] | 111 | **Important:** this has been been added to asyncio in Python 3.7 |
| 112 | on a :term:`provisional basis <provisional api>`. |
Yury Selivanov | 02a0a19 | 2017-12-14 09:42:21 -0500 | [diff] [blame] | 113 | |
| 114 | |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 115 | .. _asyncio-hello-world-coroutine: |
| 116 | |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 117 | Example: Hello World coroutine |
| 118 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 119 | |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 120 | Example of coroutine displaying ``"Hello World"``:: |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 121 | |
| 122 | import asyncio |
| 123 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 124 | async def hello_world(): |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 125 | print("Hello World!") |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 126 | |
Yury Selivanov | 02a0a19 | 2017-12-14 09:42:21 -0500 | [diff] [blame] | 127 | asyncio.run(hello_world()) |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 128 | |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 129 | .. seealso:: |
| 130 | |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 131 | The :ref:`Hello World with call_soon() <asyncio-hello-world-callback>` |
Yury Selivanov | 7c7605f | 2018-09-11 09:54:40 -0700 | [diff] [blame] | 132 | example uses the :meth:`loop.call_soon` method to schedule a |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 133 | callback. |
| 134 | |
| 135 | |
| 136 | .. _asyncio-date-coroutine: |
| 137 | |
| 138 | Example: Coroutine displaying the current date |
| 139 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 140 | |
| 141 | Example of coroutine displaying the current date every second during 5 seconds |
| 142 | using the :meth:`sleep` function:: |
| 143 | |
| 144 | import asyncio |
| 145 | import datetime |
| 146 | |
Yury Selivanov | 02a0a19 | 2017-12-14 09:42:21 -0500 | [diff] [blame] | 147 | async def display_date(): |
| 148 | loop = asyncio.get_running_loop() |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 149 | end_time = loop.time() + 5.0 |
| 150 | while True: |
| 151 | print(datetime.datetime.now()) |
| 152 | if (loop.time() + 1.0) >= end_time: |
| 153 | break |
| 154 | await asyncio.sleep(1) |
| 155 | |
Yury Selivanov | 02a0a19 | 2017-12-14 09:42:21 -0500 | [diff] [blame] | 156 | asyncio.run(display_date()) |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 157 | |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 158 | .. seealso:: |
| 159 | |
| 160 | The :ref:`display the current date with call_later() |
| 161 | <asyncio-date-callback>` example uses a callback with the |
Yury Selivanov | 7c7605f | 2018-09-11 09:54:40 -0700 | [diff] [blame] | 162 | :meth:`loop.call_later` method. |
Victor Stinner | 7f314ed | 2014-10-15 18:49:16 +0200 | [diff] [blame] | 163 | |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 164 | |
| 165 | Example: Chain coroutines |
| 166 | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 167 | |
| 168 | Example chaining coroutines:: |
| 169 | |
| 170 | import asyncio |
| 171 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 172 | async def compute(x, y): |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 173 | print("Compute %s + %s ..." % (x, y)) |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 174 | await asyncio.sleep(1.0) |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 175 | return x + y |
| 176 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 177 | async def print_sum(x, y): |
| 178 | result = await compute(x, y) |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 179 | print("%s + %s = %s" % (x, y, result)) |
| 180 | |
| 181 | loop = asyncio.get_event_loop() |
| 182 | loop.run_until_complete(print_sum(1, 2)) |
Victor Stinner | f40c663 | 2014-01-28 23:32:40 +0100 | [diff] [blame] | 183 | loop.close() |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 184 | |
| 185 | ``compute()`` is chained to ``print_sum()``: ``print_sum()`` coroutine waits |
Brian Curtin | a1afeec | 2014-02-08 18:36:14 -0600 | [diff] [blame] | 186 | until ``compute()`` is completed before returning its result. |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 187 | |
Victor Stinner | 1c4b892 | 2013-12-12 12:35:17 +0100 | [diff] [blame] | 188 | Sequence diagram of the example: |
| 189 | |
| 190 | .. image:: tulip_coro.png |
| 191 | :align: center |
| 192 | |
Yury Selivanov | 7c7605f | 2018-09-11 09:54:40 -0700 | [diff] [blame] | 193 | The "Task" is created by the :meth:`loop.run_until_complete` method |
Victor Stinner | 59759ff | 2014-01-16 19:30:21 +0100 | [diff] [blame] | 194 | when it gets a coroutine object instead of a task. |
Victor Stinner | 86e139a | 2013-12-13 12:51:24 +0100 | [diff] [blame] | 195 | |
| 196 | The diagram shows the control flow, it does not describe exactly how things |
| 197 | work internally. For example, the sleep coroutine creates an internal future |
Yury Selivanov | 7c7605f | 2018-09-11 09:54:40 -0700 | [diff] [blame] | 198 | which uses :meth:`loop.call_later` to wake up the task in 1 second. |
Victor Stinner | 28d0ae48 | 2014-05-29 00:04:57 +0200 | [diff] [blame] | 199 | |
| 200 | |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 201 | Future |
| 202 | ------ |
| 203 | |
| 204 | .. class:: Future(\*, loop=None) |
| 205 | |
| 206 | This class is *almost* compatible with :class:`concurrent.futures.Future`. |
| 207 | |
| 208 | Differences: |
| 209 | |
| 210 | - :meth:`result` and :meth:`exception` do not take a timeout argument and |
| 211 | raise an exception when the future isn't done yet. |
| 212 | |
| 213 | - Callbacks registered with :meth:`add_done_callback` are always called |
Yury Selivanov | 7c7605f | 2018-09-11 09:54:40 -0700 | [diff] [blame] | 214 | via the event loop's :meth:`loop.call_soon`. |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 215 | |
| 216 | - This class is not compatible with the :func:`~concurrent.futures.wait` and |
| 217 | :func:`~concurrent.futures.as_completed` functions in the |
| 218 | :mod:`concurrent.futures` package. |
| 219 | |
Victor Stinner | 8370496 | 2015-02-25 14:24:15 +0100 | [diff] [blame] | 220 | This class is :ref:`not thread safe <asyncio-multithreading>`. |
| 221 | |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 222 | .. method:: cancel() |
| 223 | |
| 224 | Cancel the future and schedule callbacks. |
| 225 | |
| 226 | If the future is already done or cancelled, return ``False``. Otherwise, |
| 227 | change the future's state to cancelled, schedule the callbacks and return |
| 228 | ``True``. |
| 229 | |
| 230 | .. method:: cancelled() |
| 231 | |
| 232 | Return ``True`` if the future was cancelled. |
| 233 | |
| 234 | .. method:: done() |
| 235 | |
Serhiy Storchaka | 4adf01c | 2016-10-19 18:30:05 +0300 | [diff] [blame] | 236 | Return ``True`` if the future is done. |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 237 | |
| 238 | Done means either that a result / exception are available, or that the |
| 239 | future was cancelled. |
| 240 | |
| 241 | .. method:: result() |
| 242 | |
| 243 | Return the result this future represents. |
| 244 | |
| 245 | If the future has been cancelled, raises :exc:`CancelledError`. If the |
| 246 | future's result isn't yet available, raises :exc:`InvalidStateError`. If |
| 247 | the future is done and has an exception set, this exception is raised. |
| 248 | |
| 249 | .. method:: exception() |
| 250 | |
| 251 | Return the exception that was set on this future. |
| 252 | |
| 253 | The exception (or ``None`` if no exception was set) is returned only if |
| 254 | the future is done. If the future has been cancelled, raises |
| 255 | :exc:`CancelledError`. If the future isn't done yet, raises |
| 256 | :exc:`InvalidStateError`. |
| 257 | |
Yury Selivanov | 28b9178 | 2018-05-23 13:35:04 -0400 | [diff] [blame] | 258 | .. method:: add_done_callback(callback, *, context=None) |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 259 | |
| 260 | Add a callback to be run when the future becomes done. |
| 261 | |
Yury Selivanov | 28b9178 | 2018-05-23 13:35:04 -0400 | [diff] [blame] | 262 | The *callback* is called with a single argument - the future object. If the |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 263 | future is already done when this is called, the callback is scheduled |
Yury Selivanov | 7c7605f | 2018-09-11 09:54:40 -0700 | [diff] [blame] | 264 | with :meth:`loop.call_soon`. |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 265 | |
Yury Selivanov | 28b9178 | 2018-05-23 13:35:04 -0400 | [diff] [blame] | 266 | An optional keyword-only *context* argument allows specifying a custom |
| 267 | :class:`contextvars.Context` for the *callback* to run in. The current |
| 268 | context is used when no *context* is provided. |
| 269 | |
Victor Stinner | 8464c24 | 2014-11-28 13:15:41 +0100 | [diff] [blame] | 270 | :ref:`Use functools.partial to pass parameters to the callback |
| 271 | <asyncio-pass-keywords>`. For example, |
| 272 | ``fut.add_done_callback(functools.partial(print, "Future:", |
| 273 | flush=True))`` will call ``print("Future:", fut, flush=True)``. |
| 274 | |
Yury Selivanov | 28b9178 | 2018-05-23 13:35:04 -0400 | [diff] [blame] | 275 | .. versionchanged:: 3.7 |
| 276 | The *context* keyword-only parameter was added. See :pep:`567` |
| 277 | for more details. |
| 278 | |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 279 | .. method:: remove_done_callback(fn) |
| 280 | |
| 281 | Remove all instances of a callback from the "call when done" list. |
| 282 | |
| 283 | Returns the number of callbacks removed. |
| 284 | |
| 285 | .. method:: set_result(result) |
| 286 | |
| 287 | Mark the future done and set its result. |
| 288 | |
| 289 | If the future is already done when this method is called, raises |
| 290 | :exc:`InvalidStateError`. |
| 291 | |
| 292 | .. method:: set_exception(exception) |
| 293 | |
| 294 | Mark the future done and set an exception. |
| 295 | |
| 296 | If the future is already done when this method is called, raises |
| 297 | :exc:`InvalidStateError`. |
| 298 | |
Yury Selivanov | ca9b36c | 2017-12-23 15:04:15 -0500 | [diff] [blame] | 299 | .. method:: get_loop() |
| 300 | |
| 301 | Return the event loop the future object is bound to. |
| 302 | |
| 303 | .. versionadded:: 3.7 |
| 304 | |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 305 | |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 306 | Example: Future with run_until_complete() |
| 307 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 308 | |
Victor Stinner | 59759ff | 2014-01-16 19:30:21 +0100 | [diff] [blame] | 309 | Example combining a :class:`Future` and a :ref:`coroutine function |
| 310 | <coroutine>`:: |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 311 | |
| 312 | import asyncio |
| 313 | |
Berker Peksag | f592867 | 2017-02-07 11:27:09 +0300 | [diff] [blame] | 314 | async def slow_operation(future): |
| 315 | await asyncio.sleep(1) |
Victor Stinner | 04e05da | 2014-02-17 10:54:30 +0100 | [diff] [blame] | 316 | future.set_result('Future is done!') |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 317 | |
| 318 | loop = asyncio.get_event_loop() |
| 319 | future = asyncio.Future() |
Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 320 | asyncio.ensure_future(slow_operation(future)) |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 321 | loop.run_until_complete(future) |
| 322 | print(future.result()) |
Victor Stinner | f40c663 | 2014-01-28 23:32:40 +0100 | [diff] [blame] | 323 | loop.close() |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 324 | |
Terry Jan Reedy | c935a95 | 2014-07-24 02:33:14 -0400 | [diff] [blame] | 325 | The coroutine function is responsible for the computation (which takes 1 second) |
Victor Stinner | 59759ff | 2014-01-16 19:30:21 +0100 | [diff] [blame] | 326 | and it stores the result into the future. The |
Yury Selivanov | 7c7605f | 2018-09-11 09:54:40 -0700 | [diff] [blame] | 327 | :meth:`loop.run_until_complete` method waits for the completion of |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 328 | the future. |
| 329 | |
| 330 | .. note:: |
Yury Selivanov | 7c7605f | 2018-09-11 09:54:40 -0700 | [diff] [blame] | 331 | The :meth:`loop.run_until_complete` method uses internally the |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 332 | :meth:`~Future.add_done_callback` method to be notified when the future is |
| 333 | done. |
| 334 | |
| 335 | |
| 336 | Example: Future with run_forever() |
| 337 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 338 | |
| 339 | The previous example can be written differently using the |
| 340 | :meth:`Future.add_done_callback` method to describe explicitly the control |
| 341 | flow:: |
| 342 | |
| 343 | import asyncio |
| 344 | |
Berker Peksag | f592867 | 2017-02-07 11:27:09 +0300 | [diff] [blame] | 345 | async def slow_operation(future): |
| 346 | await asyncio.sleep(1) |
Victor Stinner | 04e05da | 2014-02-17 10:54:30 +0100 | [diff] [blame] | 347 | future.set_result('Future is done!') |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 348 | |
| 349 | def got_result(future): |
| 350 | print(future.result()) |
| 351 | loop.stop() |
| 352 | |
| 353 | loop = asyncio.get_event_loop() |
| 354 | future = asyncio.Future() |
Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 355 | asyncio.ensure_future(slow_operation(future)) |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 356 | future.add_done_callback(got_result) |
Victor Stinner | 04e05da | 2014-02-17 10:54:30 +0100 | [diff] [blame] | 357 | try: |
| 358 | loop.run_forever() |
| 359 | finally: |
| 360 | loop.close() |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 361 | |
Victor Stinner | 039f703 | 2014-12-02 17:52:45 +0100 | [diff] [blame] | 362 | In this example, the future is used to link ``slow_operation()`` to |
| 363 | ``got_result()``: when ``slow_operation()`` is done, ``got_result()`` is called |
| 364 | with the result. |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 365 | |
| 366 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 367 | Task |
| 368 | ---- |
| 369 | |
Alex Grönholm | cca4eec | 2018-08-09 00:06:47 +0300 | [diff] [blame] | 370 | .. function:: create_task(coro, \*, name=None) |
Andrew Svetlov | f74ef45 | 2017-12-15 07:04:38 +0200 | [diff] [blame] | 371 | |
| 372 | Wrap a :ref:`coroutine <coroutine>` *coro* into a task and schedule |
Alex Grönholm | cca4eec | 2018-08-09 00:06:47 +0300 | [diff] [blame] | 373 | its execution. Return the task object. |
| 374 | |
| 375 | If *name* is not ``None``, it is set as the name of the task using |
| 376 | :meth:`Task.set_name`. |
Andrew Svetlov | f74ef45 | 2017-12-15 07:04:38 +0200 | [diff] [blame] | 377 | |
| 378 | The task is executed in :func:`get_running_loop` context, |
| 379 | :exc:`RuntimeError` is raised if there is no running loop in |
| 380 | current thread. |
| 381 | |
| 382 | .. versionadded:: 3.7 |
| 383 | |
Alex Grönholm | cca4eec | 2018-08-09 00:06:47 +0300 | [diff] [blame] | 384 | .. versionchanged:: 3.8 |
| 385 | Added the ``name`` parameter. |
| 386 | |
| 387 | .. class:: Task(coro, \*, loop=None, name=None) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 388 | |
Andrew Svetlov | f74ef45 | 2017-12-15 07:04:38 +0200 | [diff] [blame] | 389 | A unit for concurrent running of :ref:`coroutines <coroutine>`, |
| 390 | subclass of :class:`Future`. |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 391 | |
R David Murray | 22dd833 | 2014-09-24 11:09:09 -0400 | [diff] [blame] | 392 | A task is responsible for executing a coroutine object in an event loop. If |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 393 | the wrapped coroutine yields from a future, the task suspends the execution |
Berker Peksag | 002b0a7 | 2016-10-04 20:45:47 +0300 | [diff] [blame] | 394 | of the wrapped coroutine and waits for the completion of the future. When |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 395 | the future is done, the execution of the wrapped coroutine restarts with the |
| 396 | result or the exception of the future. |
| 397 | |
| 398 | Event loops use cooperative scheduling: an event loop only runs one task at |
R David Murray | 22dd833 | 2014-09-24 11:09:09 -0400 | [diff] [blame] | 399 | a time. Other tasks may run in parallel if other event loops are |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 400 | running in different threads. While a task waits for the completion of a |
| 401 | future, the event loop executes a new task. |
| 402 | |
luzpaz | a5293b4 | 2017-11-05 07:37:50 -0600 | [diff] [blame] | 403 | The cancellation of a task is different from the cancellation of a |
Andrew Svetlov | f124016 | 2016-01-11 14:40:35 +0200 | [diff] [blame] | 404 | future. Calling :meth:`cancel` will throw a |
| 405 | :exc:`~concurrent.futures.CancelledError` to the wrapped |
| 406 | coroutine. :meth:`~Future.cancelled` only returns ``True`` if the |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 407 | wrapped coroutine did not catch the |
| 408 | :exc:`~concurrent.futures.CancelledError` exception, or raised a |
| 409 | :exc:`~concurrent.futures.CancelledError` exception. |
| 410 | |
| 411 | If a pending task is destroyed, the execution of its wrapped :ref:`coroutine |
| 412 | <coroutine>` did not complete. It is probably a bug and a warning is |
| 413 | logged: see :ref:`Pending task destroyed <asyncio-pending-task-destroyed>`. |
| 414 | |
Andrew Svetlov | f74ef45 | 2017-12-15 07:04:38 +0200 | [diff] [blame] | 415 | Don't directly create :class:`Task` instances: use the :func:`create_task` |
Yury Selivanov | 7c7605f | 2018-09-11 09:54:40 -0700 | [diff] [blame] | 416 | function or the :meth:`loop.create_task` method. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 417 | |
Yury Selivanov | 28b9178 | 2018-05-23 13:35:04 -0400 | [diff] [blame] | 418 | Tasks support the :mod:`contextvars` module. When a Task |
| 419 | is created it copies the current context and later runs its coroutine |
| 420 | in the copied context. See :pep:`567` for more details. |
| 421 | |
Victor Stinner | 8370496 | 2015-02-25 14:24:15 +0100 | [diff] [blame] | 422 | This class is :ref:`not thread safe <asyncio-multithreading>`. |
| 423 | |
Yury Selivanov | 28b9178 | 2018-05-23 13:35:04 -0400 | [diff] [blame] | 424 | .. versionchanged:: 3.7 |
| 425 | Added support for the :mod:`contextvars` module. |
| 426 | |
Alex Grönholm | cca4eec | 2018-08-09 00:06:47 +0300 | [diff] [blame] | 427 | .. versionchanged:: 3.8 |
| 428 | Added the ``name`` parameter. |
| 429 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 430 | .. classmethod:: all_tasks(loop=None) |
| 431 | |
| 432 | Return a set of all tasks for an event loop. |
| 433 | |
| 434 | By default all tasks for the current event loop are returned. |
Yury Selivanov | 416c1eb | 2018-05-28 17:54:02 -0400 | [diff] [blame] | 435 | If *loop* is ``None``, :func:`get_event_loop` function |
| 436 | is used to get the current loop. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 437 | |
Victor Stinner | 742520b | 2013-12-10 12:14:50 +0100 | [diff] [blame] | 438 | .. classmethod:: current_task(loop=None) |
| 439 | |
| 440 | Return the currently running task in an event loop or ``None``. |
| 441 | |
| 442 | By default the current task for the current event loop is returned. |
| 443 | |
| 444 | ``None`` is returned when called not in the context of a :class:`Task`. |
| 445 | |
Victor Stinner | 8d21357 | 2014-06-02 23:06:46 +0200 | [diff] [blame] | 446 | .. method:: cancel() |
| 447 | |
R David Murray | 22dd833 | 2014-09-24 11:09:09 -0400 | [diff] [blame] | 448 | Request that this task cancel itself. |
Victor Stinner | 8d21357 | 2014-06-02 23:06:46 +0200 | [diff] [blame] | 449 | |
| 450 | This arranges for a :exc:`~concurrent.futures.CancelledError` to be |
| 451 | thrown into the wrapped coroutine on the next cycle through the event |
| 452 | loop. The coroutine then has a chance to clean up or even deny the |
| 453 | request using try/except/finally. |
| 454 | |
R David Murray | 22dd833 | 2014-09-24 11:09:09 -0400 | [diff] [blame] | 455 | Unlike :meth:`Future.cancel`, this does not guarantee that the task |
Victor Stinner | 8d21357 | 2014-06-02 23:06:46 +0200 | [diff] [blame] | 456 | will be cancelled: the exception might be caught and acted upon, delaying |
R David Murray | 22dd833 | 2014-09-24 11:09:09 -0400 | [diff] [blame] | 457 | cancellation of the task or preventing cancellation completely. The task |
| 458 | may also return a value or raise a different exception. |
Victor Stinner | 8d21357 | 2014-06-02 23:06:46 +0200 | [diff] [blame] | 459 | |
| 460 | Immediately after this method is called, :meth:`~Future.cancelled` will |
| 461 | not return ``True`` (unless the task was already cancelled). A task will |
| 462 | be marked as cancelled when the wrapped coroutine terminates with a |
| 463 | :exc:`~concurrent.futures.CancelledError` exception (even if |
| 464 | :meth:`cancel` was not called). |
| 465 | |
| 466 | .. method:: get_stack(\*, limit=None) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 467 | |
| 468 | Return the list of stack frames for this task's coroutine. |
| 469 | |
Andrew Svetlov | f124016 | 2016-01-11 14:40:35 +0200 | [diff] [blame] | 470 | If the coroutine is not done, this returns the stack where it is |
| 471 | suspended. If the coroutine has completed successfully or was |
| 472 | cancelled, this returns an empty list. If the coroutine was |
| 473 | terminated by an exception, this returns the list of traceback |
| 474 | frames. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 475 | |
| 476 | The frames are always ordered from oldest to newest. |
| 477 | |
Brian Curtin | a1afeec | 2014-02-08 18:36:14 -0600 | [diff] [blame] | 478 | The optional limit gives the maximum number of frames to return; by |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 479 | default all available frames are returned. Its meaning differs depending |
| 480 | on whether a stack or a traceback is returned: the newest frames of a |
| 481 | stack are returned, but the oldest frames of a traceback are returned. |
| 482 | (This matches the behavior of the traceback module.) |
| 483 | |
| 484 | For reasons beyond our control, only one stack frame is returned for a |
| 485 | suspended coroutine. |
| 486 | |
| 487 | .. method:: print_stack(\*, limit=None, file=None) |
| 488 | |
| 489 | Print the stack or traceback for this task's coroutine. |
| 490 | |
| 491 | This produces output similar to that of the traceback module, for the |
| 492 | frames retrieved by get_stack(). The limit argument is passed to |
| 493 | get_stack(). The file argument is an I/O stream to which the output |
R David Murray | 22dd833 | 2014-09-24 11:09:09 -0400 | [diff] [blame] | 494 | is written; by default output is written to sys.stderr. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 495 | |
Alex Grönholm | cca4eec | 2018-08-09 00:06:47 +0300 | [diff] [blame] | 496 | .. method:: get_name() |
| 497 | |
| 498 | Return the name of the task. |
| 499 | |
| 500 | If no name has been explicitly assigned to the task, the default |
| 501 | ``Task`` implementation generates a default name during instantiation. |
| 502 | |
| 503 | .. versionadded:: 3.8 |
| 504 | |
| 505 | .. method:: set_name(value) |
| 506 | |
| 507 | Set the name of the task. |
| 508 | |
| 509 | The *value* argument can be any object, which is then converted to a |
| 510 | string. |
| 511 | |
| 512 | In the default ``Task`` implementation, the name will be visible in the |
| 513 | :func:`repr` output of a task object. |
| 514 | |
| 515 | .. versionadded:: 3.8 |
| 516 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 517 | |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 518 | Example: Parallel execution of tasks |
| 519 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 520 | |
| 521 | Example executing 3 tasks (A, B, C) in parallel:: |
| 522 | |
| 523 | import asyncio |
| 524 | |
Berker Peksag | d5adb63 | 2017-02-01 22:37:16 +0300 | [diff] [blame] | 525 | async def factorial(name, number): |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 526 | f = 1 |
Victor Stinner | 34f2946 | 2013-12-10 02:51:05 +0100 | [diff] [blame] | 527 | for i in range(2, number+1): |
| 528 | print("Task %s: Compute factorial(%s)..." % (name, i)) |
Berker Peksag | d5adb63 | 2017-02-01 22:37:16 +0300 | [diff] [blame] | 529 | await asyncio.sleep(1) |
Victor Stinner | 34f2946 | 2013-12-10 02:51:05 +0100 | [diff] [blame] | 530 | f *= i |
| 531 | print("Task %s: factorial(%s) = %s" % (name, number, f)) |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 532 | |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 533 | loop = asyncio.get_event_loop() |
Berker Peksag | d5adb63 | 2017-02-01 22:37:16 +0300 | [diff] [blame] | 534 | loop.run_until_complete(asyncio.gather( |
| 535 | factorial("A", 2), |
| 536 | factorial("B", 3), |
| 537 | factorial("C", 4), |
| 538 | )) |
Victor Stinner | f40c663 | 2014-01-28 23:32:40 +0100 | [diff] [blame] | 539 | loop.close() |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 540 | |
| 541 | Output:: |
| 542 | |
Victor Stinner | 34f2946 | 2013-12-10 02:51:05 +0100 | [diff] [blame] | 543 | Task A: Compute factorial(2)... |
| 544 | Task B: Compute factorial(2)... |
| 545 | Task C: Compute factorial(2)... |
| 546 | Task A: factorial(2) = 2 |
| 547 | Task B: Compute factorial(3)... |
| 548 | Task C: Compute factorial(3)... |
| 549 | Task B: factorial(3) = 6 |
| 550 | Task C: Compute factorial(4)... |
| 551 | Task C: factorial(4) = 24 |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 552 | |
Victor Stinner | 34f2946 | 2013-12-10 02:51:05 +0100 | [diff] [blame] | 553 | A task is automatically scheduled for execution when it is created. The event |
Victor Stinner | b69d62d | 2013-12-10 02:09:46 +0100 | [diff] [blame] | 554 | loop stops when all tasks are done. |
| 555 | |
| 556 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 557 | Task functions |
| 558 | -------------- |
| 559 | |
Eli Bendersky | 029981b | 2014-01-20 07:02:22 -0800 | [diff] [blame] | 560 | .. note:: |
| 561 | |
Martin Panter | c04fb56 | 2016-02-10 05:44:01 +0000 | [diff] [blame] | 562 | In the functions below, the optional *loop* argument allows explicitly setting |
Eli Bendersky | 029981b | 2014-01-20 07:02:22 -0800 | [diff] [blame] | 563 | the event loop object used by the underlying task or coroutine. If it's |
| 564 | not provided, the default event loop is used. |
| 565 | |
Andrew Svetlov | 44d1a59 | 2017-12-16 21:58:38 +0200 | [diff] [blame] | 566 | |
Andrew Svetlov | b21505e | 2018-03-12 20:50:50 +0200 | [diff] [blame] | 567 | .. function:: current_task(loop=None) |
Andrew Svetlov | 44d1a59 | 2017-12-16 21:58:38 +0200 | [diff] [blame] | 568 | |
| 569 | Return the current running :class:`Task` instance or ``None``, if |
| 570 | no task is running. |
| 571 | |
| 572 | If *loop* is ``None`` :func:`get_running_loop` is used to get |
| 573 | the current loop. |
| 574 | |
| 575 | .. versionadded:: 3.7 |
| 576 | |
| 577 | |
Andrew Svetlov | b21505e | 2018-03-12 20:50:50 +0200 | [diff] [blame] | 578 | .. function:: all_tasks(loop=None) |
Andrew Svetlov | 44d1a59 | 2017-12-16 21:58:38 +0200 | [diff] [blame] | 579 | |
| 580 | Return a set of :class:`Task` objects created for the loop. |
| 581 | |
Yury Selivanov | 416c1eb | 2018-05-28 17:54:02 -0400 | [diff] [blame] | 582 | If *loop* is ``None``, :func:`get_running_loop` is used for getting |
| 583 | current loop (contrary to the deprecated :meth:`Task.all_tasks` method |
| 584 | that uses :func:`get_event_loop`.) |
Andrew Svetlov | 44d1a59 | 2017-12-16 21:58:38 +0200 | [diff] [blame] | 585 | |
| 586 | .. versionadded:: 3.7 |
| 587 | |
| 588 | |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 589 | .. function:: as_completed(fs, \*, loop=None, timeout=None) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 590 | |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 591 | Return an iterator whose values, when waited for, are :class:`Future` |
| 592 | instances. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 593 | |
Victor Stinner | 28d0ae48 | 2014-05-29 00:04:57 +0200 | [diff] [blame] | 594 | Raises :exc:`asyncio.TimeoutError` if the timeout occurs before all Futures |
| 595 | are done. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 596 | |
| 597 | Example:: |
| 598 | |
| 599 | for f in as_completed(fs): |
Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 600 | result = await f # The 'await' may raise |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 601 | # Use result |
| 602 | |
| 603 | .. note:: |
| 604 | |
| 605 | The futures ``f`` are not necessarily members of fs. |
| 606 | |
Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 607 | .. function:: ensure_future(coro_or_future, \*, loop=None) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 608 | |
Victor Stinner | 980dd84 | 2014-10-12 21:36:17 +0200 | [diff] [blame] | 609 | Schedule the execution of a :ref:`coroutine object <coroutine>`: wrap it in |
| 610 | a future. Return a :class:`Task` object. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 611 | |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 612 | If the argument is a :class:`Future`, it is returned directly. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 613 | |
Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 614 | .. versionadded:: 3.4.4 |
| 615 | |
Yury Selivanov | e319ab0 | 2015-12-15 00:45:24 -0500 | [diff] [blame] | 616 | .. versionchanged:: 3.5.1 |
| 617 | The function accepts any :term:`awaitable` object. |
| 618 | |
Andrew Svetlov | f74ef45 | 2017-12-15 07:04:38 +0200 | [diff] [blame] | 619 | .. note:: |
| 620 | |
| 621 | :func:`create_task` (added in Python 3.7) is the preferable way |
| 622 | for spawning new tasks. |
| 623 | |
Victor Stinner | 337e03f | 2014-08-11 01:11:13 +0200 | [diff] [blame] | 624 | .. seealso:: |
| 625 | |
Andrew Svetlov | f74ef45 | 2017-12-15 07:04:38 +0200 | [diff] [blame] | 626 | The :func:`create_task` function and |
Yury Selivanov | 7c7605f | 2018-09-11 09:54:40 -0700 | [diff] [blame] | 627 | :meth:`loop.create_task` method. |
Victor Stinner | 337e03f | 2014-08-11 01:11:13 +0200 | [diff] [blame] | 628 | |
adisbladis | 824f687 | 2017-06-09 14:28:59 +0800 | [diff] [blame] | 629 | .. function:: wrap_future(future, \*, loop=None) |
| 630 | |
| 631 | Wrap a :class:`concurrent.futures.Future` object in a :class:`Future` |
| 632 | object. |
| 633 | |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 634 | .. function:: gather(\*coros_or_futures, loop=None, return_exceptions=False) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 635 | |
Victor Stinner | 59759ff | 2014-01-16 19:30:21 +0100 | [diff] [blame] | 636 | Return a future aggregating results from the given coroutine objects or |
| 637 | futures. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 638 | |
| 639 | All futures must share the same event loop. If all the tasks are done |
| 640 | successfully, the returned future's result is the list of results (in the |
| 641 | order of the original sequence, not necessarily the order of results |
Serhiy Storchaka | 4adf01c | 2016-10-19 18:30:05 +0300 | [diff] [blame] | 642 | arrival). If *return_exceptions* is true, exceptions in the tasks are |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 643 | treated the same as successful results, and gathered in the result list; |
| 644 | otherwise, the first raised exception will be immediately propagated to the |
| 645 | returned future. |
| 646 | |
| 647 | Cancellation: if the outer Future is cancelled, all children (that have not |
| 648 | completed yet) are also cancelled. If any child is cancelled, this is |
| 649 | treated as if it raised :exc:`~concurrent.futures.CancelledError` -- the |
| 650 | outer Future is *not* cancelled in this case. (This is to prevent the |
| 651 | cancellation of one child to cause other children to be cancelled.) |
| 652 | |
Yury Selivanov | 863b674 | 2018-05-29 17:20:02 -0400 | [diff] [blame] | 653 | .. versionchanged:: 3.7.0 |
| 654 | If the *gather* itself is cancelled, the cancellation is propagated |
| 655 | regardless of *return_exceptions*. |
| 656 | |
Victor Stinner | 1ad5afc | 2014-01-30 00:18:50 +0100 | [diff] [blame] | 657 | .. function:: iscoroutine(obj) |
| 658 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 659 | Return ``True`` if *obj* is a :ref:`coroutine object <coroutine>`, |
| 660 | which may be based on a generator or an :keyword:`async def` coroutine. |
Victor Stinner | 1ad5afc | 2014-01-30 00:18:50 +0100 | [diff] [blame] | 661 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 662 | .. function:: iscoroutinefunction(func) |
Victor Stinner | 1ad5afc | 2014-01-30 00:18:50 +0100 | [diff] [blame] | 663 | |
Yury Selivanov | 66f8828 | 2015-06-24 11:04:15 -0400 | [diff] [blame] | 664 | Return ``True`` if *func* is determined to be a :ref:`coroutine function |
| 665 | <coroutine>`, which may be a decorated generator function or an |
| 666 | :keyword:`async def` function. |
Victor Stinner | 1ad5afc | 2014-01-30 00:18:50 +0100 | [diff] [blame] | 667 | |
Andrew Svetlov | f124016 | 2016-01-11 14:40:35 +0200 | [diff] [blame] | 668 | .. function:: run_coroutine_threadsafe(coro, loop) |
| 669 | |
| 670 | Submit a :ref:`coroutine object <coroutine>` to a given event loop. |
| 671 | |
| 672 | Return a :class:`concurrent.futures.Future` to access the result. |
| 673 | |
| 674 | This function is meant to be called from a different thread than the one |
| 675 | where the event loop is running. Usage:: |
| 676 | |
| 677 | # Create a coroutine |
| 678 | coro = asyncio.sleep(1, result=3) |
| 679 | # Submit the coroutine to a given loop |
| 680 | future = asyncio.run_coroutine_threadsafe(coro, loop) |
| 681 | # Wait for the result with an optional timeout argument |
| 682 | assert future.result(timeout) == 3 |
| 683 | |
| 684 | If an exception is raised in the coroutine, the returned future will be |
| 685 | notified. It can also be used to cancel the task in the event loop:: |
| 686 | |
| 687 | try: |
| 688 | result = future.result(timeout) |
| 689 | except asyncio.TimeoutError: |
| 690 | print('The coroutine took too long, cancelling the task...') |
| 691 | future.cancel() |
| 692 | except Exception as exc: |
| 693 | print('The coroutine raised an exception: {!r}'.format(exc)) |
| 694 | else: |
| 695 | print('The coroutine returned: {!r}'.format(result)) |
| 696 | |
| 697 | See the :ref:`concurrency and multithreading <asyncio-multithreading>` |
| 698 | section of the documentation. |
| 699 | |
| 700 | .. note:: |
| 701 | |
Andrew Svetlov | 3af81f2 | 2016-01-11 14:45:25 +0200 | [diff] [blame] | 702 | Unlike other functions from the module, |
| 703 | :func:`run_coroutine_threadsafe` requires the *loop* argument to |
Zachary Ware | f9aff92 | 2016-06-01 00:01:10 -0500 | [diff] [blame] | 704 | be passed explicitly. |
Andrew Svetlov | f124016 | 2016-01-11 14:40:35 +0200 | [diff] [blame] | 705 | |
Andrew Svetlov | ea47134 | 2016-01-11 15:41:43 +0200 | [diff] [blame] | 706 | .. versionadded:: 3.5.1 |
Andrew Svetlov | f124016 | 2016-01-11 14:40:35 +0200 | [diff] [blame] | 707 | |
Victor Stinner | bdd574d | 2015-02-12 22:49:18 +0100 | [diff] [blame] | 708 | .. coroutinefunction:: sleep(delay, result=None, \*, loop=None) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 709 | |
Yury Selivanov | 37f15bc | 2014-02-20 16:20:44 -0500 | [diff] [blame] | 710 | Create a :ref:`coroutine <coroutine>` that completes after a given |
Eli Bendersky | 2d26af8 | 2014-01-20 06:59:23 -0800 | [diff] [blame] | 711 | time (in seconds). If *result* is provided, it is produced to the caller |
| 712 | when the coroutine completes. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 713 | |
Victor Stinner | 45b27ed | 2014-02-01 02:36:43 +0100 | [diff] [blame] | 714 | The resolution of the sleep depends on the :ref:`granularity of the event |
| 715 | loop <asyncio-delayed-calls>`. |
| 716 | |
Victor Stinner | bdd574d | 2015-02-12 22:49:18 +0100 | [diff] [blame] | 717 | This function is a :ref:`coroutine <coroutine>`. |
| 718 | |
Joongi Kim | 13cfd57 | 2018-03-04 01:43:54 +0900 | [diff] [blame] | 719 | .. coroutinefunction:: shield(arg, \*, loop=None) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 720 | |
| 721 | Wait for a future, shielding it from cancellation. |
| 722 | |
| 723 | The statement:: |
| 724 | |
Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 725 | res = await shield(something()) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 726 | |
| 727 | is exactly equivalent to the statement:: |
| 728 | |
Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 729 | res = await something() |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 730 | |
| 731 | *except* that if the coroutine containing it is cancelled, the task running |
| 732 | in ``something()`` is not cancelled. From the point of view of |
| 733 | ``something()``, the cancellation did not happen. But its caller is still |
| 734 | cancelled, so the yield-from expression still raises |
| 735 | :exc:`~concurrent.futures.CancelledError`. Note: If ``something()`` is |
| 736 | cancelled by other means this will still cancel ``shield()``. |
| 737 | |
| 738 | If you want to completely ignore cancellation (not recommended) you can |
| 739 | combine ``shield()`` with a try/except clause, as follows:: |
| 740 | |
| 741 | try: |
Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 742 | res = await shield(something()) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 743 | except CancelledError: |
| 744 | res = None |
| 745 | |
Yury Selivanov | 950204d | 2016-05-16 16:23:00 -0400 | [diff] [blame] | 746 | |
Andrew Svetlov | f124016 | 2016-01-11 14:40:35 +0200 | [diff] [blame] | 747 | .. coroutinefunction:: wait(futures, \*, loop=None, timeout=None,\ |
| 748 | return_when=ALL_COMPLETED) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 749 | |
Victor Stinner | 59759ff | 2014-01-16 19:30:21 +0100 | [diff] [blame] | 750 | Wait for the Futures and coroutine objects given by the sequence *futures* |
| 751 | to complete. Coroutines will be wrapped in Tasks. Returns two sets of |
Victor Stinner | 99c2ab4 | 2013-12-03 19:17:25 +0100 | [diff] [blame] | 752 | :class:`Future`: (done, pending). |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 753 | |
Victor Stinner | db74d98 | 2014-06-10 11:16:05 +0200 | [diff] [blame] | 754 | The sequence *futures* must not be empty. |
| 755 | |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 756 | *timeout* can be used to control the maximum number of seconds to wait before |
| 757 | returning. *timeout* can be an int or float. If *timeout* is not specified |
| 758 | or ``None``, there is no limit to the wait time. |
| 759 | |
| 760 | *return_when* indicates when this function should return. It must be one of |
Victor Stinner | 933a8c8 | 2013-12-03 01:59:38 +0100 | [diff] [blame] | 761 | the following constants of the :mod:`concurrent.futures` module: |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 762 | |
| 763 | .. tabularcolumns:: |l|L| |
| 764 | |
| 765 | +-----------------------------+----------------------------------------+ |
| 766 | | Constant | Description | |
| 767 | +=============================+========================================+ |
| 768 | | :const:`FIRST_COMPLETED` | The function will return when any | |
| 769 | | | future finishes or is cancelled. | |
| 770 | +-----------------------------+----------------------------------------+ |
| 771 | | :const:`FIRST_EXCEPTION` | The function will return when any | |
| 772 | | | future finishes by raising an | |
| 773 | | | exception. If no future raises an | |
| 774 | | | exception then it is equivalent to | |
| 775 | | | :const:`ALL_COMPLETED`. | |
| 776 | +-----------------------------+----------------------------------------+ |
| 777 | | :const:`ALL_COMPLETED` | The function will return when all | |
| 778 | | | futures finish or are cancelled. | |
| 779 | +-----------------------------+----------------------------------------+ |
| 780 | |
Elvis Pranskevichus | f9aeca2 | 2018-05-29 18:21:44 -0400 | [diff] [blame] | 781 | Unlike :func:`~asyncio.wait_for`, ``wait()`` will not cancel the futures |
Elvis Pranskevichus | dec947c | 2018-05-29 20:14:59 -0400 | [diff] [blame] | 782 | when a timeout occurs. |
Elvis Pranskevichus | f9aeca2 | 2018-05-29 18:21:44 -0400 | [diff] [blame] | 783 | |
Yury Selivanov | 37f15bc | 2014-02-20 16:20:44 -0500 | [diff] [blame] | 784 | This function is a :ref:`coroutine <coroutine>`. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 785 | |
| 786 | Usage:: |
| 787 | |
Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 788 | done, pending = await asyncio.wait(fs) |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 789 | |
| 790 | .. note:: |
| 791 | |
Victor Stinner | 28d0ae48 | 2014-05-29 00:04:57 +0200 | [diff] [blame] | 792 | This does not raise :exc:`asyncio.TimeoutError`! Futures that aren't done |
| 793 | when the timeout occurs are returned in the second set. |
Victor Stinner | ea3183f | 2013-12-03 01:08:00 +0100 | [diff] [blame] | 794 | |
Victor Stinner | 3e09e32 | 2013-12-03 01:22:06 +0100 | [diff] [blame] | 795 | |
Victor Stinner | bdd574d | 2015-02-12 22:49:18 +0100 | [diff] [blame] | 796 | .. coroutinefunction:: wait_for(fut, timeout, \*, loop=None) |
Victor Stinner | 1ad5afc | 2014-01-30 00:18:50 +0100 | [diff] [blame] | 797 | |
| 798 | Wait for the single :class:`Future` or :ref:`coroutine object <coroutine>` |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 799 | to complete with timeout. If *timeout* is ``None``, block until the future |
Victor Stinner | 1ad5afc | 2014-01-30 00:18:50 +0100 | [diff] [blame] | 800 | completes. |
| 801 | |
Victor Stinner | 337e03f | 2014-08-11 01:11:13 +0200 | [diff] [blame] | 802 | Coroutine will be wrapped in :class:`Task`. |
Victor Stinner | 1ad5afc | 2014-01-30 00:18:50 +0100 | [diff] [blame] | 803 | |
| 804 | Returns result of the Future or coroutine. When a timeout occurs, it |
Victor Stinner | 28d0ae48 | 2014-05-29 00:04:57 +0200 | [diff] [blame] | 805 | cancels the task and raises :exc:`asyncio.TimeoutError`. To avoid the task |
Elvis Pranskevichus | e2b340a | 2018-05-29 17:31:01 -0400 | [diff] [blame] | 806 | cancellation, wrap it in :func:`shield`. The function will wait until |
| 807 | the future is actually cancelled, so the total wait time may exceed |
| 808 | the *timeout*. |
Victor Stinner | 1ad5afc | 2014-01-30 00:18:50 +0100 | [diff] [blame] | 809 | |
Victor Stinner | 72dcb0a | 2015-04-03 17:08:19 +0200 | [diff] [blame] | 810 | If the wait is cancelled, the future *fut* is also cancelled. |
| 811 | |
Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 812 | This function is a :ref:`coroutine <coroutine>`, usage:: |
Yury Selivanov | 37f15bc | 2014-02-20 16:20:44 -0500 | [diff] [blame] | 813 | |
Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 814 | result = await asyncio.wait_for(fut, 60.0) |
Victor Stinner | 1ad5afc | 2014-01-30 00:18:50 +0100 | [diff] [blame] | 815 | |
Victor Stinner | 72dcb0a | 2015-04-03 17:08:19 +0200 | [diff] [blame] | 816 | .. versionchanged:: 3.4.3 |
| 817 | If the wait is cancelled, the future *fut* is now also cancelled. |
Elvis Pranskevichus | e2b340a | 2018-05-29 17:31:01 -0400 | [diff] [blame] | 818 | |
| 819 | .. versionchanged:: 3.7 |
| 820 | When *fut* is cancelled due to a timeout, ``wait_for`` now waits |
| 821 | for *fut* to be cancelled. Previously, |
| 822 | it raised :exc:`~asyncio.TimeoutError` immediately. |