Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/thread/future status"

From cppreference.com
< cpp‎ | thread
(+)
 
(added see also)
Line 13: Line 13:
 
{{dcl list begin}}
 
{{dcl list begin}}
 
{{dcl list hitem | Constant | Explanation}}
 
{{dcl list hitem | Constant | Explanation}}
{{dcl list item | {{tt|deferred}} | the shared state contains a deferred function. The result will be computed only when explicitly requested}}
+
{{dcl list item | {{tt|deferred}} | the shared state contains a deferred function, so the result will be computed only when explicitly requested}}
 
{{dcl list item | {{tt|ready}} | the shared state is ready}}
 
{{dcl list item | {{tt|ready}} | the shared state is ready}}
 
{{dcl list item | {{tt|timeout}} | the shared state did not become ready before specified timeout duration has passed}}
 
{{dcl list item | {{tt|timeout}} | the shared state did not become ready before specified timeout duration has passed}}
 +
{{dcl list end}}
 +
 +
===See also===
 +
{{dcl list begin}}
 +
{{dcl list template | cpp/thread/future/dcl list wait_for|future}}
 +
{{dcl list template | cpp/thread/future/dcl list wait_for|shared_future}}
 +
{{dcl list template | cpp/thread/future/dcl list wait_until|future}}
 +
{{dcl list template | cpp/thread/future/dcl list wait_until|shared_future}}
 
{{dcl list end}}
 
{{dcl list end}}

Revision as of 13:43, 7 August 2012

 
 
Concurrency support library
Threads
(C++11)
(C++20)
this_thread namespace
(C++11)
(C++11)
(C++11)
Cooperative cancellation
Mutual exclusion
(C++11)
Generic lock management
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Condition variables
(C++11)
Semaphores
Latches and Barriers
(C++20)
(C++20)
Futures
(C++11)
(C++11)
(C++11)
(C++11)
future_status
(C++11)
Safe Reclamation
(C++26)
Hazard Pointers
Atomic types
(C++11)
(C++20)
Initialization of atomic types
(C++11)(deprecated in C++20)
(C++11)(deprecated in C++20)
Memory ordering
Free functions for atomic operations
Free functions for atomic flags
 
Defined in header <future>
enum class future_status {

    ready,
    timeout,
    deferred

};
(since C++11)

Specifies state of a future as returned by wait_for and wait_until functions of std::future and std::shared_future.

Constant Explanation
deferred the shared state contains a deferred function, so the result will be computed only when explicitly requested
ready the shared state is ready
timeout the shared state did not become ready before specified timeout duration has passed

See also

Template:cpp/thread/future/dcl list wait forTemplate:cpp/thread/future/dcl list wait forTemplate:cpp/thread/future/dcl list wait untilTemplate:cpp/thread/future/dcl list wait until