我可以对多个监听套接字使用相同的 boost::asio::io_service 吗?
我正在使用 Boost asio 1.48。是否可以为同时打开的多个侦听套接字重复使用单个 boost::asio::io_service 实例?
文档说它是共享安全的,但我不确定这是否已经是一个肯定的答案。
I am using Boost asio 1.48. Is it possible to re-use a single boost::asio::io_service
instance for multiple listening sockets that are open simultaneously?
The docs say its share-safe, but I am not sure if that is already a positive answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以,而且你应该。您可以使用相同的
io_service
来处理这些套接字、处理计时器、处理您向其发布
的请求,等等。io_service
的全部意义在于充当各种工作的中央调度程序。Yes, you can, and you should. And you can use that same
io_service
to handle those sockets, handle timers, handle requests youpost
to it, and so on. The whole point of anio_service
is to act as a central dispatcher for work of all kinds.