如何在多线程中使用QTCPServer?
我正在尝试编写一个网络服务器来同时处理来自多个客户端的请求。按照其设计方式,一次只能处理一个请求。
我需要的是一种调用 nextPendingConnection()
的方法,然后将连接分派到单独的线程进行处理。
有什么办法可以做到这一点吗?
I am trying to write a webserver that processes requests from multiple clients simultaneously. The way it is designed, only one request can be processed at a time.
What I need is a way to call nextPendingConnection()
and then dispatch the connection to a separate thread for processing.
Is there any way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的示例应该解释它 http://doc.qt.io/qt -5/qtnetwork-threadedfortuneserver-example.html
This sample here should explain it http://doc.qt.io/qt-5/qtnetwork-threadedfortuneserver-example.html