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

Function asio_handler_is_continuation

include/boost/asio/composed.hpp:187–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185
186template <typename Impl, typename Work, typename Handler, typename Signature>
187inline bool asio_handler_is_continuation(
188 composed_op<Impl, Work, Handler, Signature>* this_handler)
189{
190 return this_handler->invocations_ > 1 ? true
191 : BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation(
192 this_handler->handler_);
193}
194
195template <typename Implementation, typename Executors, typename... Signatures>
196class initiate_composed

Callers

nothing calls this directly

Calls 2

is_continuationFunction · 0.85

Tested by

no test coverage detected