在使用python的多线程时,使用了生产者消费者模式,一般都是消费者接受生产者的数据执行某些操作,但是现在这个消费者线程遇到了异常,需要终止执行,但是生产者线程因为还在生产数据,主线程在等待它执行完。目前想当消费者线程遇到错误时能够通知生产者线程,我挂了,你也结束吧。请问大家有什么好的实现方法
import threading
class Producer(threading.Thread):
def __init__(self, queue):
super(Producer, self).__init__()
self.queue = queue
def run(self):
while True:
for i in range(10):
self.queue.put(i)
class Consumer(threading.Thread):
def __init__(self, queue):
super(Consumer, self).__init__()
self.queue = queue
def run(self):
while True:
try:
data = self.queue.get()
print data
if data == 5:
raise ValueError('over')
except ValueError as e:
#通知生产者结束
#如何实现?
我的方法:
加上一個 flag 標識。
先看結果吧:
更多廢話也不多說了,show u the code
最後說說python的多線程,由於GIL的存在,其實多線程有的時候並不是最好的選擇,具體什麼時候使用,網上也說的很多了,樓主也可以結合自己的業務情況捨取多線程模組。
簡單的話,就直接把錯誤raise出來,然後讓進程自己崩潰掉就好了.
或者,你也可以用異常處理把消費者的run包裹起來,捕獲這個異常,然後再控制生產者的線程就好了.