用法:
asyncio.create_task(coro, *, name=None)
将
coro
协程包装到Task
并安排其执行。返回任务对象。如果
name
不是None
,则使用Task.set_name()
将其设置为任务的名称。任务在
get_running_loop()
返回的循环中执行,如果当前线程中没有正在运行的循环,则会引发RuntimeError
。该函数已在 Python 3.7 中添加.在 Python 3.7 之前,低级
asyncio.ensure_future()
可以改用函数:async def coro(): ... # In Python 3.7+ task = asyncio.create_task(coro()) ... # This works in all Python versions but is less readable task = asyncio.ensure_future(coro()) ...
重要的
保存对该函数结果的引用,以避免任务在执行过程中消失。
3.7 版中的新函数。
在 3.8 版中更改:添加了
name
范围。
相关用法
- Python asyncio.coroutine用法及代码示例
- Python asyncio.BaseTransport.get_extra_info用法及代码示例
- Python asyncio.shield用法及代码示例
- Python asyncio.run用法及代码示例
- Python asyncio.wait_for用法及代码示例
- Python asyncio.Task.cancel用法及代码示例
- Python asyncio.loop.run_in_executor用法及代码示例
- Python asyncio.Server用法及代码示例
- Python asyncio.Server.serve_forever用法及代码示例
- Python asyncio.Event用法及代码示例
- Python asyncio.gather用法及代码示例
- Python asyncio.sleep用法及代码示例
- Python asyncio.to_thread用法及代码示例
- Python asyncio.Condition用法及代码示例
- Python asyncio.SelectorEventLoop用法及代码示例
- Python asyncio.run_coroutine_threadsafe用法及代码示例
- Python asyncio.Lock用法及代码示例
- Python asyncio.Future.add_done_callback用法及代码示例
- Python asyncio.loop.shutdown_asyncgens用法及代码示例
- Python asyncio.as_completed用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 asyncio.create_task。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。