| description | Learn more about: missing_wait Class | |||
|---|---|---|---|---|
| title | missing_wait Class | |||
| ms.date | 11/04/2016 | |||
| f1_keywords |
|
|||
| helpviewer_keywords |
|
|||
| ms.assetid | ff981875-bd43-47e3-806f-b03c9f418b18 |
This class describes an exception thrown when there are tasks still scheduled to a task_group or structured_task_group object at the time that object's destructor executes. This exception will never be thrown if the destructor is reached because of a stack unwinding as the result of an exception.
class missing_wait : public std::exception;| Name | Description |
|---|---|
| missing_wait | Overloaded. Constructs a missing_wait object. |
Absent exception flow, you are responsible for calling either the wait or run_and_wait method of a task_group or structured_task_group object before allowing that object to destruct. The runtime throws this exception as an indication that you forgot to call the wait or run_and_wait method.
exception
missing_wait
Header: concrt.h
Namespace: concurrency
Constructs a missing_wait object.
explicit _CRTIMP missing_wait(_In_z_ const char* _Message) throw();
missing_wait() throw();_Message
A descriptive message of the error.
concurrency Namespace
task_group Class
wait
run_and_wait
structured_task_group Class