本文整理汇总了Python中ThreadPool.ThreadPool.add_worker方法的典型用法代码示例。如果您正苦于以下问题:Python ThreadPool.add_worker方法的具体用法?Python ThreadPool.add_worker怎么用?Python ThreadPool.add_worker使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ThreadPool.ThreadPool
的用法示例。
在下文中一共展示了ThreadPool.add_worker方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_stock_patch
# 需要导入模块: from ThreadPool import ThreadPool [as 别名]
# 或者: from ThreadPool.ThreadPool import add_worker [as 别名]
def get_stock_patch(self):
print('get_stock_patch')
self.raw_data = ''
tp = ThreadPool(10)
path = 'http://hq.sinajs.cn/list='
str = ''
c = 0
for i in self.get_stock_names():
c = c + 1
str += i
str += ','
if c < 200:
continue
tp.add_worker(self.thread_task, path + str, self.thread_task_cb)
str = ''
c = 0
if len(str) > 0:
tp.add_worker(self.thread_task, path + str, self.thread_task_cb)
tp.pool_start()
tp.pool_join()
print('get_stock_patch_done')
return self.raw_data