I want to move and call boost :: packaged_task inside lambda.
However, I cannot find an elegant solution.
eg. This will not compile.
template<typename Func>
auto begin_invoke(Func&& func) -> boost::unique_future<decltype(func())>
{
typedef boost::packaged_task<decltype(func())> task_type;
auto task = task_type(std::forward<Func>(func));
auto future = task.get_future();
execution_queue_.try_push([=]
{
try{task();}
catch(boost::task_already_started&){}
});
return std::move(future);
}
int _tmain(int argc, _TCHAR* argv[])
{
executor ex;
ex.begin_invoke([]{std::cout << "Hello world!";});
return 0;
}
My pretty ugly solution:
struct task_adaptor_t
{
task_adaptor_t(const task_adaptor_t& other) : task(std::move(other.task)){}
task_adaptor_t(task_type&& task) : task(std::move(task)){}
void operator()() const { task(); }
mutable task_type task;
} task_adaptor(std::move(task));
execution_queue_.try_push([=]
{
try{task_adaptor();}
catch(boost::task_already_started&){}
});
What is the “right” way to move packed_task to the lambda that calls it?
ronag source
share