这是给我的代码,我不完全确定runReturn的功能是什么,文档似乎有点稀疏。
我怀疑它与其他地方相同,reactor.run()
但将线程管理归还给其他地方?
app=QtGui.QApplication('monitor GUI') # Create the application
app.setQuitOnLastWindowClosed(False)
if reactor is None: # reactor may be the module twisted.internet.reactor
import qt4reactor # Must be after Qt application is created
qt4reactor.install()
from twisted.internet import reactor
reactor.runReturn()
谢谢