Home | History | Annotate | Download | only in Support

Lines Matching defs:Task

60   /// Asynchronous submission of a task to the pool. The returned future can be
61 /// used to wait for the task to finish and is *non-blocking* on destruction.
64 auto Task =
67 return asyncImpl(std::move(Task));
71 return asyncImpl([Task](VoidTy) mutable -> VoidTy {
72 Task();
78 /// Asynchronous submission of a task to the pool. The returned future can be
79 /// used to wait for the task to finish and is *non-blocking* on destruction.
94 /// Asynchronous submission of a task to the pool. The returned future can be
95 /// used to wait for the task to finish and is *non-blocking* on destruction.