| 560 | BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code, |
| 561 | std::size_t)) ReadToken = default_completion_token_t<executor_type>> |
| 562 | auto async_read_some(const MutableBufferSequence& buffers, |
| 563 | ReadToken&& token = default_completion_token_t<executor_type>()) |
| 564 | -> decltype( |
| 565 | async_initiate<ReadToken, |
| 566 | void (boost::system::error_code, std::size_t)>( |
| 567 | declval<initiate_async_read_some>(), token, buffers)) |
| 568 | { |
| 569 | return async_initiate<ReadToken, |
| 570 | void (boost::system::error_code, std::size_t)>( |
| 571 | initiate_async_read_some(this), token, buffers); |
| 572 | } |
| 573 | |
| 574 | private: |
| 575 | // Disallow copying and assignment. |
nothing calls this directly
no test coverage detected