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

Method async_write_some

include/boost/asio/impl/buffered_write_stream.hpp:353–365  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

351 BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
352 std::size_t)) WriteHandler>
353inline auto buffered_write_stream<Stream>::async_write_some(
354 const ConstBufferSequence& buffers, WriteHandler&& handler)
355 -> decltype(
356 async_initiate<WriteHandler,
357 void (boost::system::error_code, std::size_t)>(
358 declval<detail::initiate_async_buffered_write_some<Stream>>(),
359 handler, declval<detail::buffered_stream_storage*>(), buffers))
360{
361 return async_initiate<WriteHandler,
362 void (boost::system::error_code, std::size_t)>(
363 detail::initiate_async_buffered_write_some<Stream>(next_layer_),
364 handler, &storage_, buffers);
365}
366
367template <typename Stream>
368template <typename ConstBufferSequence>

Callers 2

operator()Method · 0.45
operator()Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected