| 556 | BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code, |
| 557 | std::size_t)) WriteToken = default_completion_token_t<executor_type>> |
| 558 | auto async_write_some(const ConstBufferSequence& buffers, |
| 559 | WriteToken&& token = default_completion_token_t<executor_type>()) |
| 560 | -> decltype( |
| 561 | async_initiate<WriteToken, |
| 562 | void (boost::system::error_code, std::size_t)>( |
| 563 | declval<initiate_async_write_some>(), token, buffers)) |
| 564 | { |
| 565 | return async_initiate<WriteToken, |
| 566 | void (boost::system::error_code, std::size_t)>( |
| 567 | initiate_async_write_some(this), token, buffers); |
| 568 | } |
| 569 | |
| 570 | private: |
| 571 | // Disallow copying and assignment. |
nothing calls this directly
no test coverage detected