美文网首页
asio::io_service被废弃的问题

asio::io_service被废弃的问题

作者: 阿群1986 | 来源:发表于2019-06-14 20:57 被阅读0次

新版 ASIO 必须以 asio::io_context 替换 asio::io_service

  • io_context -> io_service
  • io_context.post() -> io_context.get_executor().post()
  • io_context.dispatch() -> io_context.get_executor().dispatch()
  • io_context::strand -> strand<io_context::executor_type>

there were also changes to composed operation customization hooks - there are only 2 now - boost::asio::associated_allocator and boost::asio::associated_executor, which default to looking for get_allocator(), get_executor(), T::allocator_type, T::executor_type members of the composed operation function object.

This is not a complete list.

相关文章

  • asio::io_service被废弃的问题

    新版 ASIO 必须以 asio::io_context 替换 asio::io_service io_conte...

  • 使用boost::asio::io_service和同步队列模拟

    boost::asio::io_service有一个post方法,可以提交任务,异步执行。C++11之后支持lam...

  • 关于Boost.Asio

    目的 使用Boost.Asio连接/提供网络服务 了解Boost.Asio提供的功能 了解Boost.Asio的实...

  • boost_asio学习第2课 2、io_service 探究

    接着上篇文章,今天继续探究io_service。 上篇文章中我们知道了io_service 是委托给 io_ser...

  • boost_asio学习第1课 1、io_service 简介

    垂涎boost 很久了,毕竟 :"准标准库"嘛,怎么会不让人动心呢。不过在下才疏学浅,若有错误,或者理解不当的地方...

  • 被废弃的皇妃

    咔嚓咔嚓咔嚓— 哒哒哒哒哒—— “罪人爱丽丝提亚·拉·莫尼克,贵为皇妃,却无德善妒,犯下企图杀害皇帝...

  • 被废弃的开头

    日上梢头,秦良玉在二楼,衣着单薄,凭栏而望。 他的王府地处清净,视野开阔。 向左看是青苔斑斑的马头墙,向右看...

  • 被废弃的房屋

    古往今来,对老百姓来说,房子是最要紧最贵重的财产,有了钱,首先要买房置地,房子旧了要好好修复,发了财,就要建...

  • Boost(二)

    boost::asio asio 主要用于网络通信,封装了socket API, 包含了TCP, ICMP,UDP...

  • iOS锁-OSSpinLock与os_unfair_lock

    OSSpinLock与os_unfair_lock OSSpinLock 已经被Apple废弃,因为线程安全问题,...

网友评论

      本文标题:asio::io_service被废弃的问题

      本文链接:https://www.haomeiwen.com/subject/qujmfctx.html