摘要:
1 #coding:utf8 2 from threading import Thread,Lock 3 from Queue import Queue,Empty 4 5 class Worker(Thread): 6 def __init__(self,threadPool): 7 Thread.__init__(self) 8 self.threadPool = threadPool 9 self.daemon = True10 self.state = None11 self.start() ... 阅读全文
posted @ 2013-05-13 15:36
细胞核
阅读(409)
评论(0)
推荐(0)