我有一个结构如下的程序:
它GUI
是用 wxPython 制作的,位于主线程中。启动应用程序后,GUI 线程Thread1
创建一个静态类Class1
,该类创建一个Thread2
.
Thread1 使用 与 GUI 对话wx.PostEvent
,一切正常。我还需要 Thread1 与 Thread2 进行通信,所以我决定使用 pyPubSub 来实现。Thread2 需要在后台工作,因为它包含一些定期执行的操作,但它还包含my_func()
Thread1 需要在某些事件上调用的函数(比方说)。我决定放入my_func()
Thread2 是因为我不希望它停止 Thread1 的执行,但这正是发生的事情:在 Thread1 中,在我pub.sendMessage("events", message="Hello")
用来触发的一些事件之后my_func()
;Thread2 的结构如下:
class Thread2(Thread)
def __init__(self, parent):
super().__init__()
self.parent = parent
pub.subscribe(self.my_func, "events")
def run(self):
while True:
# do stuff
def my_func(self, message):
# do other stuff using the message
# call parent functions
Thread2 的父级是 Class1,所以当我在 Class1 中创建线程时,我会:
self.t2 = Thread2(self)
self.t2.start()
为什么 Thread2 会停止 Thread1 的执行?