用法:
@asyncio.coroutine
装饰器来标记基于生成器的协程。
这个装饰器使遗留的基于生成器的协程与 async/await 代码兼容:
@asyncio.coroutine def old_style_coroutine(): yield from asyncio.sleep(1) async def main(): await old_style_coroutine()
此装饰器不应用于
async def
协程。自 3.8 版起已弃用,将在 3.11 版中删除:采用
async def
反而。
相关用法
- Python asyncio.create_task用法及代码示例
- 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.coroutine。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。