Implement promise<T>
as defined in ISO/IEC TS 19571:2016.
Constructors
promise()
Creates a promise with an unsatisfied shared state.
promise(std::function< void()>)
Creates a promise with an unsatisfied shared state.
cancellation_callback
std::function< void()>
promise(null_promise_t)
Creates a promise without a shared state.
x
null_promise_t
promise(promise &&)
Constructs a new promise and transfer any shared state from rhs
.
promise &&
promise(promise const &)
promise const &
Operators
operator=(promise &&)
Abandons the shared state in *this
, if any, and transfers the shared state from rhs
.
rhs
promise &&
promise &
operator=(promise const &)
promise const &
promise &
Functions
swap(promise &)
Swaps the shared state in *this
with rhs
.
other
promise &
void
get_future()
Creates the future<T>
using the same shared state as *this
.
future< T >
set_value(T)
Satisfies the shared state.
value
T
std::future_error
std::future_error
void

