Function template set_lco_value
hpx::set_lco_value — Set the result value for the LCO referenced by the given id.
Synopsis
template<typename T>
void set_lco_value(naming::id_type const & id, T && t,
naming::id_type const & cont);
Description
Parameters: |
cont
|
[in] This represents the LCO to trigger after completion. |
id
|
[in] This represents the id of the LCO which should receive the given value. |
t
|
[in] This is the value which should be sent to the LCO. |
|