| 410 | typename ConstBufferIterator, typename CompletionCondition, |
| 411 | typename WriteHandler> |
| 412 | inline void start_write_op(AsyncWriteStream& stream, |
| 413 | const ConstBufferSequence& buffers, const ConstBufferIterator&, |
| 414 | CompletionCondition& completion_condition, WriteHandler& handler) |
| 415 | { |
| 416 | detail::write_op<AsyncWriteStream, ConstBufferSequence, |
| 417 | ConstBufferIterator, CompletionCondition, WriteHandler>( |
| 418 | stream, buffers, completion_condition, handler)( |
| 419 | boost::system::error_code(), 0, 1); |
| 420 | } |
| 421 | |
| 422 | template <typename AsyncWriteStream> |
| 423 | class initiate_async_write |
no outgoing calls
no test coverage detected