Template Function concore::v1::execute¶
Defined in File execution.hpp
Function Documentation¶
-
template<typename
Executor, typenameFtor>
voidconcore::v1::execute(Executor &&e, Ftor &&f)¶ Customization point object that can be used to execute work on executors.
This will tell the executor object to invoke the given functor, according to the rules defined in the executor.
- Parameters
e: The executor object we are using for our executionf: The functor to be invoked
The
Executortype should model conceptexecutor_of<Ftor>.- See