python实现异步调用函数

点点圈 提交于 2020-03-17 04:42:22
 1 import time
 2 from concurrent.futures import ThreadPoolExecutor
 3 
 4 def RunBenchmark(url):
 5     print('GET %s' % url)
 6     response = url
 7     time.sleep(3)
 8     return(url+" FINISHED")
 9 
10 def RunPool():
11     urls = 'CPU'
12     pool = ThreadPoolExecutor(1)          #启动一个线程池
13     task=pool.submit(RunBenchmark, urls)     #在另外的线程中运行RunBenchmark() 
14     while(not task.done()):             #task.done()表示线程池中的工作完成了
15         print("ooo")                 #主线程中可以执行其他工作
16         time.sleep(0.5)
17     print("bye")
18 
19 if __name__ == '__main__':
20     RunPool()

 

 https://www.jianshu.com/p/b9b3d66aa0be

https://blog.csdn.net/sinat_34461756/article/details/83866300

https://cloud.tencent.com/developer/article/1187407

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!