Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2018. The current version is 1.89.0.
Default continuation function for handlers.
bool asio_handler_is_continuation(
... );
Asynchronous operations may represent a continuation of the asynchronous control flow associated with the current handler. The implementation can use this knowledge to optimise scheduling of the handler.
Implement asio_handler_is_continuation for your own handlers to indicate when a handler represents a continuation.
The default implementation of the continuation hook returns false.
class my_handler;
bool asio_handler_is_continuation(my_handler* context)
{
return true;
}
Header: boost/asio/handler_continuation_hook.hpp
Convenience header: boost/asio.hpp