| 84 | |
| 85 | template <typename Mutable_Buffers, typename Handler> |
| 86 | void async_read(const Mutable_Buffers&, Handler handler) |
| 87 | { |
| 88 | boost::system::error_code error; |
| 89 | boost::asio::post(io_context_, |
| 90 | boost::asio::detail::bind_handler(handler, error, 0)); |
| 91 | } |
| 92 | |
| 93 | private: |
| 94 | io_context_type& io_context_; |
nothing calls this directly
no test coverage detected