|
| | catch (...) |
| |
| | catch (...) |
| |
| | catch (...) |
| |
| DX_PRAGMA_IGNORE_RETURN_VALUE_BEGIN | catch (const dx::exception &__dx_exception) |
| |
| DX_PRAGMA_IGNORE_RETURN_VALUE_BEGIN | catch (const dx::exception &__dx_exception) |
| |
| DX_PRAGMA_IGNORE_RETURN_VALUE_BEGIN | catch (const dx::exception &__dx_exception) |
| |
| | catch (const std::exception &__std_exception) |
| |
| | catch (const std::exception &__std_exception) |
| |
| | catch (const std::exception &__std_exception) |
| |
| void | commit (lock_t &&lock, const value_t &value) try |
| |
| | operator bool () const noexcept |
| |
| DX_PRAGMA_IGNORE_RETURN_VALUE_END | operator const value_t & () try |
| |
| promoted & | operator++ () noexcept |
| |
| value_t | operator++ (int) noexcept |
| |
| promoted & | operator+= (const value_t &value) noexcept |
| |
| promoted & | operator-- () noexcept |
| |
| value_t | operator-- (int) noexcept |
| |
| promoted & | operator-= (const value_t &value) noexcept |
| |
| const value_t & | operator-> () |
| |
| DX_PRAGMA_IGNORE_RETURN_VALUE_END bool | operator== (const value_t &value) noexcept |
| |
| bool | operator== (promoted &promoted) noexcept |
| |
| | preference (const preference_t &_preference, decltype(listen)&&listen, decltype(dflt)&&dflt=[]() ->value_t{return {};}, decltype(align)&&align=[](const value_t &value, const value_t &){return value;}, decltype(preference_value)&&preference_value=[](const value_t &value){return static_cast< const preference_value_t & >(value);}, decltype(value)&&value=[](const preference_value_t &preference_value){value_t value;return value=preference_value;}) |
| |
| | preference (const preference_t &_preference, decltype(listen)::mapped_type &&listen, decltype(dflt)&&dflt=[]() ->value_t{return {};}, decltype(align)&&align=[](const value_t &value, const value_t &){return value;}, decltype(preference_value)&&preference_value=[](const value_t &value){return static_cast< const preference_value_t & >(value);}, decltype(value)&&value=[](const preference_value_t &preference_value){value_t value;return value=preference_value;}) |
| |
| | preference (const preference_t &preference, decltype(dflt)&&dflt=[]() ->value_t{return {};}, decltype(align)&&align=[](const value_t &value, const value_t &){return value;}, decltype(preference_value)&&preference_value=[](const value_t &value){return static_cast< const preference_value_t & >(value);}, decltype(value)&&value=[](const preference_value_t &preference_value){value_t value;return value=preference_value;}) |
| |
| | preference (preference_t &&_preference, decltype(listen)&&listen, decltype(dflt)&&dflt=[]() ->value_t{return {};}, decltype(align)&&align=[](const value_t &value, const value_t &){return value;}, decltype(preference_value)&&preference_value=[](const value_t &value){return static_cast< const preference_value_t & >(value);}, decltype(value)&&value=[](const preference_value_t &preference_value){value_t value;return value=preference_value;}) |
| |
| | preference (preference_t &&_preference, decltype(listen)::mapped_type &&listen, decltype(dflt)&&dflt=[]() ->value_t{return {};}, decltype(align)&&align=[](const value_t &value, const value_t &){return value;}, decltype(preference_value)&&preference_value=[](const value_t &value){return static_cast< const preference_value_t & >(value);}, decltype(value)&&value=[](const preference_value_t &preference_value){value_t value;return value=preference_value;}) |
| |
| | preference (preference_t &&preference, decltype(dflt)&&dflt=[]() ->value_t{return {};}, decltype(align)&&align=[](const value_t &value, const value_t &){return value;}, decltype(preference_value)&&preference_value=[](const value_t &value){return static_cast< const preference_value_t & >(value);}, decltype(value)&&value=[](const preference_value_t &preference_value){value_t value;return value=preference_value;}) |
| |
\ indicate the value is in transition - does not have the new value yet
server: handle synchronous and asynchronous value updates and initialization lock: lock promoted value from access during update value: new value (if in transition) current: current value to allow discarding update and reverting to current value if update is not permitted
it needs to handle these case: not initialized and not in transition: initialze and commit the value not initialized and in transition: if dependent on external settings initialize a temporary and compare it with the new value and update the external setting if required make sure to commit the new value so listeners get notified either synchronously or asynchronously by external notification initialized and in transition: update external settings if any and make sure to commit the new value so listeners get notified either synchronously or asynchronousl by external notification
server will not be called with this state: initialized and not in transation