开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
master
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
python3.7.4
/
Doc
/
library
/
asyncio-future.rst
python3.7.4
/
Doc
/
library
/
asyncio-future.rst
asyncio-future.rst 7.28 KB
一键复制 编辑 原始数据 按行查看 历史
zhangweibo 提交于 2021年11月17日 13:49 +08:00 . git init
.. currentmodule:: asyncio


Futures

Future objects are used to bridge low-level callback-based code with high-level async/await code.

Future Functions

.. function:: isfuture(obj)

 Return ``True`` if *obj* is either of:

 * an instance of :class:`asyncio.Future`,
 * an instance of :class:`asyncio.Task`,
 * a Future-like object with a ``_asyncio_future_blocking``
 attribute.

 .. versionadded:: 3.5


.. function:: ensure_future(obj, \*, loop=None)

 Return:

 * *obj* argument as is, if *obj* is a :class:`Future`,
 a :class:`Task`, or a Future-like object (:func:`isfuture`
 is used for the test.)

 * a :class:`Task` object wrapping *obj*, if *obj* is a
 coroutine (:func:`iscoroutine` is used for the test.)

 * a :class:`Task` object that would await on *obj*, if *obj* is an
 awaitable (:func:`inspect.isawaitable` is used for the test.)

 If *obj* is neither of the above a :exc:`TypeError` is raised.

 .. important::

 See also the :func:`create_task` function which is the
 preferred way for creating new Tasks.

 .. versionchanged:: 3.5.1
 The function accepts any :term:`awaitable` object.


.. function:: wrap_future(future, \*, loop=None)

 Wrap a :class:`concurrent.futures.Future` object in a
 :class:`asyncio.Future` object.


Future Object

A Future represents an eventual result of an asynchronous operation. Not thread-safe.

Future is an :term:`awaitable` object. Coroutines can await on Future objects until they either have a result or an exception set, or until they are cancelled.

Typically Futures are used to enable low-level callback-based code (e.g. in protocols implemented using asyncio :ref:`transports <asyncio-transports-protocols>`) to interoperate with high-level async/await code.

The rule of thumb is to never expose Future objects in user-facing APIs, and the recommended way to create a Future object is to call :meth:`loop.create_future`. This way alternative event loop implementations can inject their own optimized implementations of a Future object.

.. versionchanged:: 3.7
 Added support for the :mod:`contextvars` module.

.. method:: result()

 Return the result of the Future.

 If the Future is *done* and has a result set by the
 :meth:`set_result` method, the result value is returned.

 If the Future is *done* and has an exception set by the
 :meth:`set_exception` method, this method raises the exception.

 If the Future has been *cancelled*, this method raises
 a :exc:`CancelledError` exception.

 If the Future's result isn't yet available, this method raises
 a :exc:`InvalidStateError` exception.

.. method:: set_result(result)

 Mark the Future as *done* and set its result.

 Raises a :exc:`InvalidStateError` error if the Future is
 already *done*.

.. method:: set_exception(exception)

 Mark the Future as *done* and set an exception.

 Raises a :exc:`InvalidStateError` error if the Future is
 already *done*.

.. method:: done()

 Return ``True`` if the Future is *done*.

 A Future is *done* if it was *cancelled* or if it has a result
 or an exception set with :meth:`set_result` or
 :meth:`set_exception` calls.

.. method:: cancelled()

 Return ``True`` if the Future was *cancelled*.

 The method is usually used to check if a Future is not
 *cancelled* before setting a result or an exception for it::

 if not fut.cancelled():
 fut.set_result(42)

.. method:: add_done_callback(callback, *, context=None)

 Add a callback to be run when the Future is *done*.

 The *callback* is called with the Future object as its only
 argument.

 If the Future is already *done* when this method is called,
 the callback is scheduled with :meth:`loop.call_soon`.

 An optional keyword-only *context* argument allows specifying a
 custom :class:`contextvars.Context` for the *callback* to run in.
 The current context is used when no *context* is provided.

 :func:`functools.partial` can be used to pass parameters
 to the callback, e.g.::

 # Call 'print("Future:", fut)' when "fut" is done.
 fut.add_done_callback(
 functools.partial(print, "Future:"))

 .. versionchanged:: 3.7
 The *context* keyword-only parameter was added.
 See :pep:`567` for more details.

.. method:: remove_done_callback(callback)

 Remove *callback* from the callbacks list.

 Returns the number of callbacks removed, which is typically 1,
 unless a callback was added more than once.

.. method:: cancel()

 Cancel the Future and schedule callbacks.

 If the Future is already *done* or *cancelled*, return ``False``.
 Otherwise, change the Future's state to *cancelled*,
 schedule the callbacks, and return ``True``.

.. method:: exception()

 Return the exception that was set on this Future.

 The exception (or ``None`` if no exception was set) is
 returned only if the Future is *done*.

 If the Future has been *cancelled*, this method raises a
 :exc:`CancelledError` exception.

 If the Future isn't *done* yet, this method raises an
 :exc:`InvalidStateError` exception.

.. method:: get_loop()

 Return the event loop the Future object is bound to.

 .. versionadded:: 3.7

This example creates a Future object, creates and schedules an asynchronous Task to set result for the Future, and waits until the Future has a result:

async def set_after(fut, delay, value):
 # Sleep for *delay* seconds.
 await asyncio.sleep(delay)

 # Set *value* as a result of *fut* Future.
 fut.set_result(value)

async def main():
 # Get the current event loop.
 loop = asyncio.get_running_loop()

 # Create a new Future object.
 fut = loop.create_future()

 # Run "set_after()" coroutine in a parallel Task.
 # We are using the low-level "loop.create_task()" API here because
 # we already have a reference to the event loop at hand.
 # Otherwise we could have just used "asyncio.create_task()".
 loop.create_task(
 set_after(fut, 1, '... world'))

 print('hello ...')

 # Wait until *fut* has a result (1 second) and print it.
 print(await fut)

asyncio.run(main())

Important

The Future object was designed to mimic :class:`concurrent.futures.Future`. Key differences include:

Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

暂无描述
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_sourcecode/python3.7.4.git
git@gitee.com:python_sourcecode/python3.7.4.git
python_sourcecode
python3.7.4
python3.7.4
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /