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 2020. The current version is 1.90.0.
The boost::asio::make_strand
function creates a strand
object for an executor or execution context.
Create a strand
object for an executor.
template<
typename Executor>
strand< Executor > make_strand(
const Executor & ex,
typename enable_if< is_executor< Executor >::value||execution::is_executor< Executor >::value >::type * = 0);
» more...
Create a strand
object for an execution context.
template<
typename ExecutionContext>
strand< typename ExecutionContext::executor_type > make_strand(
ExecutionContext & ctx,
typename enable_if< is_convertible< ExecutionContext &, execution_context & >::value >::type * = 0);
» more...
Header: boost/asio/strand.hpp
Convenience header: boost/asio.hpp