我可以对多个监听套接字使用相同的 boost::asio::io_service 吗?

发布于 2024-12-29 10:36:45 字数 119 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏末 2025-01-05 10:36:45

是的,你可以,而且你应该。您可以使用相同的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 you post to it, and so on. The whole point of an io_service is to act as a central dispatcher for work of all kinds.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文