Asyncio:保持多个协程运行

时间:2017-04-07 11:39:47

标签: python python-3.x python-asyncio

我有多个协同程序需要同时运行(永远)。对于错误处理,其中一个例程偶尔会结束并需要重新生成,我使用下面的代码,但是假设它是需要重新启动的coroutine1。

pending = {coroutine1(), coroutine2()}
while True:
    a = asyncio.wait(pending, return_when=asyncio.FIRST_COMPLETED)
    done, pending = loop.run_until_complete(a)
    pending = pending | {coroutine1()}

如何以更好,更一般的方式解决这个问题?

1 个答案:

答案 0 :(得分:1)

使用不同的方法怎么样?

async def run_forever(corofn):
    while True:
        await corofn()

corofns = coroutine1, coroutine2
await asyncio.wait(map(run_forever, corofns))