wxPython线程UDP服务器
我正在尝试将 UDP 服务器与 wxPython GUI 组合在一起。
这是代码的链接:
我已将其链接起来,因为它很漂亮冗长。我已成功让 UDP 服务器在线程上运行,但我不知道如何在停止线程时关闭套接字。
目前,每次您单击“开始”时,它都会启动一个新线程,但我将删除它。当线程停止时是否可以关闭套接字的运行?
如果我以完全错误的方式这样做,我们将不胜感激。
干杯
埃夫
I am trying to put together a UDP server with a wxPython GUI.
Here is a link to the code:
I have linked it as its pretty lengthy. I have successfully got the UDP server running on the thread but I can not figure out how to close the socket when the stopping the thread.
At the moment it will kick up a new thread each time you click start but I will be removing this. Is it possible to close the socket from running when the thread is stopped?
If I am doing this the complete wrong way any advice is appreciated.
Cheers
Eef
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用Python Twisted。它与twisted.internet.wxreactor 集成了wxPython,使网络变得简单且无线程。
Use Python Twisted. It has wxPython integration with twisted.internet.wxreactor and makes networking easy and threadless.