在不同模块中运行的线程之间共享队列

时间:2015-09-15 12:34:36

标签: python multithreading python-2.7 queue

我的项目有不同包的模块。这个项目需要几个可能在不同模块中启动的线程,我打算使用队列进行线程间通信。

有没有办法传递在一个模块中创建的队列以便在另一个模块中使用?

# ModuleA.py    

myQueue = Queue.Queue()
thread = myThread(threadID1, tName1, myQueue)
thread2 = myThread(threadID2, tName2, myQueue)

# ModuleB.py

myQueue = get_the_previous_queue_created() # possible?
thread3 = myThread(threadID3, tName3, myQueue)

1 个答案:

答案 0 :(得分:4)

队列与任何其他对象没有区别,因为如果它在一个模块中的模块级别定义,您可以导入该模块并直接访问它:

import ModuleA
# now ModuleA.myQueue is the Queue object created there