Dispatch Queue
Dispatch Queue / Thread Pool implementation for C++11 with built-in C++20 coroutine support
 
Loading...
Searching...
No Matches
task_state.hpp
Go to the documentation of this file.
1#pragma once
2
3namespace dispatch_queue {
4
19
20} // end namespace dispatch_queue
Definition dispatch_queue.hpp:19
task_state
Definition task_state.hpp:9
@ failed
Task failed with an exception.
Definition task_state.hpp:17
@ pending
Task is either queued for execution or still running.
Definition task_state.hpp:13
@ ready
Task finished successfully and the result value is readily available.
Definition task_state.hpp:15
@ invalid
Task was created without a future and is invalid.
Definition task_state.hpp:11