其他分享
首页 > 其他分享> > Sanic框架中的同步和异步

Sanic框架中的同步和异步

作者:互联网

app和loop是全局的

可以全局的设置 app.属性 到处取值

后台任务可以添加在后台

如果您希望安排后台任务在循环开始后运行,则Sanic提供了add_task方法可以轻松地做到这一点。

async def notify_server_started_after_five_seconds(app):
    await asyncio.sleep(5)
    print(app.name)
app.add_task(notify_server_started_after_five_seconds(app))

标签:异步,同步,seconds,app,server,add,notify,Sanic,后台任务
来源: https://blog.csdn.net/lw_zhaoritian/article/details/120991635