Google Cloud C++ Client 2.10.1
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... | |
template<class U , typename Enable = absl::enable_if_t<std::is_constructible<T, U>::value>> | |
future (future< U > &&rhs) | |
Creates a future from a future whose result type is convertible to this future's result type. 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>
.
using google::cloud::future< T >::shared_state_type = typename internal::future_base<T>::shared_state_type |
|
inlinenoexcept |
|
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 |
Creates a future from a future whose result type is convertible to this future's result type.
|
inlineexplicit |
|
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. |
|
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.
future<T>
where T is std::result_of_t<F, R>
(basically). If T matches future<U>
then it returns future<U>
. The returned future will contain the result 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.
|
friend |