Eclipse不会破坏线程

时间:2010-10-14 00:06:45

标签: multithreading eclipse

我正在使用Eclipse来开发使用PyDev的PyQt应用程序。它使用两个线程,一个用于gui,一个用于网络流量,Eclipse拒绝在网络流量线程中设置断点,我知道它运行是因为它抛出异常,但我无法检查非常烦人的事情。

还有其他人遇到类似的问题吗? 伪代码:

 class NetHelper
     sendLots()

 class Worker(QThread):
     run()
        NetHelper.sendLots()

 class GUIThingie(QDialog):
     handleClick():
         self.worker.start()

0 个答案:

没有答案