码迷,mamicode.com
首页 > 编程语言 > 详细

线程池或进程池的回调函数

时间:2019-01-14 23:04:51      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:pool   cut   tor   大小   BMI   executor   OLE   print   return   

from concurrent.futuress   import ThreadPoolExecutor,ProcessPoolExecutor

def f1(n,s):

  return n+s

def f2(n):

  print(‘回调函数>>>‘,n.result())

if __name__ == ‘__main__‘:
  tp = ThreadPoolExecutor(4)#指定线程池的大小

  res = tp.submit(f1,1,2).add_done_callback(f2)#添加回调函数 

回调函数定义:将F1函数中的return返回值作为参数传给f2

  

线程池或进程池的回调函数

标签:pool   cut   tor   大小   BMI   executor   OLE   print   return   

原文地址:https://www.cnblogs.com/16795079a/p/10269191.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!