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

Function asio_handler_is_continuation

include/boost/asio/impl/read.hpp:435–442  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

433 typename MutableBufferIterator, typename CompletionCondition,
434 typename ReadHandler>
435 inline bool asio_handler_is_continuation(
436 read_op<AsyncReadStream, MutableBufferSequence, MutableBufferIterator,
437 CompletionCondition, ReadHandler>* this_handler)
438 {
439 return this_handler->start_ == 0 ? true
440 : BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation(
441 this_handler->handler_);
442 }
443
444 template <typename AsyncReadStream, typename MutableBufferSequence,
445 typename MutableBufferIterator, typename CompletionCondition,

Callers

nothing calls this directly

Calls 2

is_continuationFunction · 0.85

Tested by

no test coverage detected