Google Cloud C++ Client
0.4.0
C++ Client Library for Google Cloud Platform
|
Implement ISO/IEC TS 19571:2016 future<T>
.
More...
#include <google/cloud/future_generic.h>
Public Types | |
using | shared_state_type = typename internal::future_base< T >::shared_state_type |
Public Member Functions | |
future () noexcept | |
future (future< future< T >> &&rhs) noexcept(false) | |
Creates a new future that unwraps rhs . More... | |
T | get () |
Waits until the shared state becomes ready, then retrieves the value stored in the shared state. More... | |
template<typename F > | |
internal::then_helper< F, T >::future_t | then (F &&func) |
Attach a continuation to the future. More... | |
future (std::shared_ptr< shared_state_type > state) | |
Friends | |
template<typename U > | |
class | future |
class | future< void > |
Implement ISO/IEC TS 19571:2016 future<T>
.
Definition at line 35 of file future_generic.h.
using google::cloud::v0::future< T >::shared_state_type = typename internal::future_base<T>::shared_state_type |
Definition at line 38 of file future_generic.h.
|
inlinenoexcept |
Definition at line 42 of file future_generic.h.
|
noexcept |
Creates a new future that unwraps rhs
.
This constructor creates a new shared state that becomes satisfied when both rhs
and rhs.get()
become satisfied. If rhs
is satisfied, but rhs.get()
returns an invalid future then the newly created future becomes satisfied with a std::future_error
exception, and the exception error code is std::future_errc::broken_promise
.
noexcept
constructor I (coryan) believe this is a defect in the technical specification, as this creates a new shared state: shared states are dynamically allocated, and the allocator (which might be the default operator new
) may raise.
|
inlineexplicit |
Definition at line 109 of file future_generic.h.
|
inline |
Waits until the shared state becomes ready, then retrieves the value stored in the shared state.
any | exceptions stored in the shared state. |
std::future_error | with std::no_state if the future does not have a shared state. |
Definition at line 72 of file future_generic.h.
|
inline |
Attach a continuation to the future.
Attach a callable func to be invoked when the future is ready. The return type is a future wrapping the return type of func.
func | a Callable to be invoked when the future is ready. The function might be called immediately, e.g., if the future is ready. |
Side effects: valid() == false if the operation is successful.
Definition at line 102 of file future_generic.h.
Definition at line 124 of file future_generic.h.
|
friend |
Definition at line 125 of file future_generic.h.