728x90
728x170
*[header][Multi-threading] future (C++11)
<future>
Future
Each of these providers (which are either promise or packaged_task objects, or calls to async) share access to a shared state with a future object: the point where the provider makes the shared state ready is synchronized with the point the future object accesses the shared state.
Classes
Providers
- promise
- Promise (class template )
- packaged_task
- Packaged task (class template )
Futures
- future
- Future (class template )
- shared_future
- Shared future (class template )
Other types
- future_error
- Future error exception (class )
- future_errc
- Error conditions for future objects (enum class )
- future_status
- Return value for timed future operations (enum class )
- launch
- Launching policy for async (enum class )
Functions
Providers
- async
- Call function asynchronously (function template )
Other functions
- future_category
- Return future category (function )
728x90
그리드형(광고전용)
'Programming > C++' 카테고리의 다른 글
[header][Input/Output] iomanip (0) | 2017.11.08 |
---|---|
[header][Input/Output] fstream (0) | 2017.11.08 |
[header][Multi-threading] thread (C++11) (0) | 2017.11.08 |
[header][Multi-threading] mutex (C++11) (0) | 2017.11.08 |
[header][Multi-threading] condition_variable (C++11) (0) | 2017.11.08 |
[header][Multi-threading] atomic (C++11) (0) | 2017.11.08 |
[header][other] valarray (0) | 2017.11.08 |
[header][other] utility (0) | 2017.11.08 |