Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个需要在主线程以外的线程上运行 TCP 服务器的应用程序。尝试运行以下代码时:
reactor.listenTCP(ServerConfiguration.tcpport, TcpCommandFactory()) reactor.run()
我收到以下错误
exceptions.ValueError:信号仅在主线程中有效
我可以在主线程以外的线程上运行扭曲服务器吗?
Twisted 可以在任何线程中运行——但一次只能运行一个线程。如果要在非主线程中运行,只需执行reactor.run(installSignalHandlers=False). 但是,您不能在非主线程上使用反应器来生成子进程,因为它们的终止永远不会被检测到。(这是 UNIX 的限制,实际上,不是 Twisted。)
reactor.run(installSignalHandlers=False)