python threadpool线程池源码分析

本文详细分析了Python的threadpool模块,探讨了线程池的工作原理,包括WorkRequest、WorkerThread和ThreadPool类的功能和实现。文章指出该库在使用上的不便,并通过源码解释了请求的创建、执行和结果处理过程。
摘要由CSDN通过智能技术生成
python的这个线程池库感觉不是很好用,用起来的感觉也不怎么好。
# -*- coding: UTF-8 -*-
__docformat__ = "restructuredtext en"

__all__ = [
    'makeRequests',
    'NoResultsPending',
    'NoWorkersAvailable',
    'ThreadPool',
    'WorkRequest',
    'WorkerThread'
]

__author__ = "Christopher Arndt"
__version__ = '1.3.2'
__license__ = "MIT license"


# standard library modules
import sys
import threading
import traceback

try:
    import Queue            # Python 2
except ImportError:
    import queue as Queue   # Python 3


# exceptions
class NoResultsPending(Exception):
    pass

class NoWorkersAvailable(Exception):
    pass


# internal module helper functions
def _handle_thread_exception(request, exc_info):
    traceback.print_exception(*exc_info)


# utility functions
def makeRequests(callable_, args_list, callback=None,
        exc_callback=_handle_thread_exception):
#制造工作请求
#觉得参数列表定义有点抽象,不怎么好用,
#目前只用过if里传参方式,格式要这样子[((),{}),] 首先外层是列表,每个子项是元祖,每个元组长度必定为2,元组的第一项还是个元组,第二项是字典
    requests = []
    for item in args_list:
        if isinstance(item, tuple):
            requests.append(
                WorkReques
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值