增强ASIO io_服务与io_Context

Boost asio io_service vs io_context(增强ASIO io_服务与io_Context)
本文介绍了增强ASIO io_服务与io_Context的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用带有C++的Boost ASIO库。我发现io_service和io_context有相似之处。例如,两者都有方法运行和其他。谁能详细介绍一下这两个类别之间的区别(如用法、概念、结构差异等)

推荐答案

您应该使用io_context,它取代了io_service

根据Boost问题#110:

io_service已弃用。是的,您应该使用io_context。请注意,";old";API也已弃用(例如io_service.post(),您应该使用post(io_context, handler))。

。。。

io_service-&>io_context
io_service.post()-&>io_context.get_executor().post()
io_service.dispatch()-&>io_context.get_executor().dispatch()

io_service::strand-&>strand<io_context::executor_type>

还对组合操作定制挂钩进行了更改- 现在只有2个-boost::asio::associated_allocatorboost::asio::associated_executor,默认情况下查找 get_allocator(),get_executor()T::allocator_typeT::executor_type 合成的操作函数对象的成员。

这不是完整的列表。

这些更改与Networking TS compatibility相关。

似乎已添加到Boost 1.66中。

这篇关于增强ASIO io_服务与io_Context的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

socks4 with asynchronous boost::asio(带有异步Boost::ASIO的socks4)
Boost ASIO HTTP client POST(增强ASIO HTTP客户端开机自检)
asio::strandlt;asio::io_context::executor_typegt; vs io_context::strand(Asio::strandlt;asio::io_context::executor_typegt;VS io_CONTEXT::Strand)
What#39;s the difference between asio::io_context and asio::thread_pool?(ASIO::IO_CONTEXT和ASIO::THREAD_POOL有什么区别?)
How to use boost::asio with Linux GPIOs(如何在Linux GPIO中使用Boost::ASIO)
io_service, why and how is it used?(IO_SERVICE,为什么以及如何使用它?)