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

Function asio_handler_is_continuation

include/boost/asio/impl/write.hpp:400–407  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

398 typename ConstBufferIterator, typename CompletionCondition,
399 typename WriteHandler>
400 inline bool asio_handler_is_continuation(
401 write_op<AsyncWriteStream, ConstBufferSequence, ConstBufferIterator,
402 CompletionCondition, WriteHandler>* this_handler)
403 {
404 return this_handler->start_ == 0 ? true
405 : BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation(
406 this_handler->handler_);
407 }
408
409 template <typename AsyncWriteStream, typename ConstBufferSequence,
410 typename ConstBufferIterator, typename CompletionCondition,

Callers

nothing calls this directly

Calls 2

is_continuationFunction · 0.85

Tested by

no test coverage detected