How do we call a normal function where a coroutine

2019-03-25 21:14发布

Consider a coroutine which calls into another coroutine:

async def foo(bar):
     result = await bar()
     return result

This works fine if bar is a coroutine. What do I need to do (i.e. with what do I need to wrap the call to bar) so that this code does the right thing if bar is a normal function?

It is perfectly possible to define a coroutine with async def even if it never does anything asynchronous (i.e. never uses await). However, the question asks how to wrap/modify/call a regular function bar inside the code for foo such that bar can be awaited.

1条回答
放我归山
2楼-- · 2019-03-25 22:18

Simply wrap your synchronous function with asyncio.coroutine if needed:

if not asyncio.iscoroutinefunction(bar):
    bar = asyncio.coroutine(bar)

Since it is safe to re-wrap a coroutine, the coroutine function test is actually not required:

async_bar = asyncio.coroutine(sync_or_async_bar)

Therefore, your code can be re-written as follows:

async def foo(bar):
     return await asyncio.coroutine(bar)()
查看更多
登录 后发表回答