摘要: 其一:Source code: Lib/queue.pyThe queue module implements multi-producer, multi-consumer queues. It is especially useful in threaded programming when in... 阅读全文
posted @ 2015-07-02 09:14 何似王 阅读(1059) 评论(0) 推荐(0) 编辑
摘要: 提供服务部分(运行时在接收端未打开前不能关闭) 1 #mainsec.py 2 from multiprocessing import Process, Queue 3 from multiprocessing.managers import BaseManager 4 class Worker(P... 阅读全文
posted @ 2015-07-02 00:34 何似王 阅读(888) 评论(0) 推荐(0) 编辑
摘要: 可以在windows下单机运行主部分(提供服务器)1 #mainfirst.py2 from multiprocessing.managers import BaseManager3 import Queue4 queue = Queue.Queue()5 class QueueManager(Ba... 阅读全文
posted @ 2015-07-02 00:31 何似王 阅读(3722) 评论(0) 推荐(0) 编辑