本文整理汇总了Python中ThreadPool.ThreadPool.wait_for_complete方法的典型用法代码示例。如果您正苦于以下问题:Python ThreadPool.wait_for_complete方法的具体用法?Python ThreadPool.wait_for_complete怎么用?Python ThreadPool.wait_for_complete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ThreadPool.ThreadPool
的用法示例。
在下文中一共展示了ThreadPool.wait_for_complete方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test
# 需要导入模块: from ThreadPool import ThreadPool [as 别名]
# 或者: from ThreadPool.ThreadPool import wait_for_complete [as 别名]
def test():
print('start testing')
tp = ThreadPool()
for i in range(15):
time.sleep(0.1)
tp.add_job(test_job, i)
t = time.time()
tp.wait_for_complete()
print('s:'+str(time.time()-t))
print('end testing')
示例2: GetMatchPage
# 需要导入模块: from ThreadPool import ThreadPool [as 别名]
# 或者: from ThreadPool.ThreadPool import wait_for_complete [as 别名]
def GetMatchPage(season, league, matches):
'''
获取指定联赛的Match页面
'''
tp = ThreadPool()
print('Start updating ' + season + ' ' + league + ' matches...')
dirLeague = Global.Dir_Root + season + '\\' + league
for matchID in sorted(matches.keys()):
urlMatch = matches.get(matchID)
tp.add_job(GetPageText, dirLeague, matchID, urlMatch, len(matches))
tp.wait_for_complete()
if len(matches) > 0:
print('\n' + season + ' ' +league + ' updating complete!\n')
else:
print(season + ' ' + league + ' updating complete!\n')