|
template<typename SyncWriteStream , typename ConstBufferSequence > |
std::size_t | boost::asio::write (SyncWriteStream &s, const ConstBufferSequence &buffers) |
| Write all of the supplied data to a stream before returning. More...
|
|
template<typename SyncWriteStream , typename ConstBufferSequence > |
std::size_t | boost::asio::write (SyncWriteStream &s, const ConstBufferSequence &buffers, boost::system::error_code &ec) |
| Write all of the supplied data to a stream before returning. More...
|
|
template<typename SyncWriteStream , typename ConstBufferSequence , typename CompletionCondition > |
std::size_t | boost::asio::write (SyncWriteStream &s, const ConstBufferSequence &buffers, CompletionCondition completion_condition) |
| Write a certain amount of data to a stream before returning. More...
|
|
template<typename SyncWriteStream , typename ConstBufferSequence , typename CompletionCondition > |
std::size_t | boost::asio::write (SyncWriteStream &s, const ConstBufferSequence &buffers, CompletionCondition completion_condition, boost::system::error_code &ec) |
| Write a certain amount of data to a stream before returning. More...
|
|
template<typename SyncWriteStream , typename Allocator > |
std::size_t | boost::asio::write (SyncWriteStream &s, basic_streambuf< Allocator > &b) |
| Write all of the supplied data to a stream before returning. More...
|
|
template<typename SyncWriteStream , typename Allocator > |
std::size_t | boost::asio::write (SyncWriteStream &s, basic_streambuf< Allocator > &b, boost::system::error_code &ec) |
| Write all of the supplied data to a stream before returning. More...
|
|
template<typename SyncWriteStream , typename Allocator , typename CompletionCondition > |
std::size_t | boost::asio::write (SyncWriteStream &s, basic_streambuf< Allocator > &b, CompletionCondition completion_condition) |
| Write a certain amount of data to a stream before returning. More...
|
|
template<typename SyncWriteStream , typename Allocator , typename CompletionCondition > |
std::size_t | boost::asio::write (SyncWriteStream &s, basic_streambuf< Allocator > &b, CompletionCondition completion_condition, boost::system::error_code &ec) |
| Write a certain amount of data to a stream before returning. More...
|
|
template<typename AsyncWriteStream , typename ConstBufferSequence , typename WriteHandler > |
| boost::asio::BOOST_ASIO_INITFN_RESULT_TYPE (WriteHandler, void(boost::system::error_code, std::size_t)) async_write(AsyncWriteStream &s |
| Start an asynchronous operation to write all of the supplied data to a stream. More...
|
|
const ConstBufferSequence | boost::asio::BOOST_ASIO_MOVE_ARG (WriteHandler) handler) |
|
template<typename AsyncWriteStream , typename ConstBufferSequence , typename CompletionCondition , typename WriteHandler > |
| boost::asio::BOOST_ASIO_INITFN_RESULT_TYPE (WriteHandler, void(boost::system::error_code, std::size_t)) async_write(AsyncWriteStream &s |
| Start an asynchronous operation to write a certain amount of data to a stream. More...
|
|