服务器之家

服务器之家 > 正文

python中利用await关键字如何等待Future对象完成详解

时间:2020-12-06 17:52     来源/作者:caimouse

前言

本文主要给大家介绍了关于pythonawait关键字等待Future对象完成的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。

在下面的例子里,演示了怎么样使用await来等Future对象设置结果完成

示例代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import asyncio
 
 
def mark_done(future, result):
 print('setting future result to {!r}'.format(result))
 future.set_result(result)
 
 
async def main(loop):
 all_done = asyncio.Future()
 
 print('scheduling mark_done')
 loop.call_soon(mark_done, all_done, 'the result')
 
 result = await all_done
 print('returned result: {!r}'.format(result))
 
 
event_loop = asyncio.get_event_loop()
try:
 event_loop.run_until_complete(main(event_loop))
finally:
 event_loop.close()

输出结果如下:

?
1
2
3
scheduling mark_done
setting future result to 'the result'
returned result: 'the result'

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。

原文链接:http://blog.csdn.net/caimouse/article/details/77869577

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址 2020-08-12
最新idea2020注册码永久激活(激活到2100年)
最新idea2020注册码永久激活(激活到2100年) 2020-07-29
返回顶部