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 the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

strand::execute

Request the strand to invoke the given function object.

template<
    typename Function>
constraint< execution::can_execute< const Executor &, Function >::value, void >::type execute(
    Function && f) const;

Do not call this function directly. It is intended for use with the execution::execute customisation point.

For example:

boost::asio::strand<my_executor_type> ex = ...;
execution::execute(ex, my_function_object);

This function is used to ask the strand to execute the given function object on its underlying executor. The function object will be executed according to the properties of the underlying executor.

Parameters

f

The function object to be called. The executor will make a copy of the handler object as required. The function signature of the function object must be:

void function();

PrevUpHomeNext