Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
A factory method for creating a task_handle object.
template <
class _Function
>
task_handle<_Function> make_task(
const _Function& _Func
);
Parameters
_Function
The type of the function object that will be invoked to execute the work represented by the task_handle object._Func
The function that will be invoked to execute the work represented by the task_handle object. This may be a lambda functor, a pointer to a function, or any object that supports a version of the function call operator with the signature void operator()().
Return Value
A task_handle object.
Remarks
This function is useful when you need to create a task_handle object with a lambda expression, because it allows you to create the object without knowing the true type of the lambda functor.
Requirements
Header: ppl.h
Namespace: concurrency