MCPcopy Create free account
hub / github.com/boostorg/asio / async_write_some

Function async_write_some

include/boost/asio/basic_writable_pipe.hpp:558–568  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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
570private:
571 // Disallow copying and assignment.

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected