|
| virtual void | callback () |
| | catch (...) |
| DX_PRAGMA_IGNORE_RETURN_VALUE_BEGIN | catch (const dx::exception &__dx_exception) |
| | catch (const std::exception &__std_exception) |
| | 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 |
| | dx_catchall_rethrow () void free() noexcept |
| void | initialize (::SC_HANDLE handle, ::DWORD mask) try |
| | operator const os_event () const noexcept |
| DX_PRAGMA_IGNORE_RETURN_VALUE_END | operator const value_t & () try |
| | operator os_event () noexcept |
| promoted & | operator++ () noexcept |
| DX_PRAGMA_IGNORE_RETURN_VALUE_BEGIN DX_PRAGMA_IGNORE_RETURN_VALUE_END 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-> () |
| | operator::HANDLE () const noexcept |
| DX_PRAGMA_IGNORE_RETURN_VALUE_END bool | operator== (const value_t &value) |
| bool | operator== (promoted &promoted) noexcept |
| | promoted (class manager &manager, decltype(listen)&&listen) |
| | promoted (class manager &manager, decltype(listen)::mapped_type &&listen) |
| | promoted (class manager &manager, decltype(server)&&server, decltype(listen)::mapped_type &&listen) |
| | promoted (class manager &manager, decltype(server)&&server={}, decltype(listen)&&listen={}) |
| DX_PRAGMA_IGNORE_RETURN_VALUE_END event & | reset (uint64_t count=0) override try |
| event & | signal (uint64_t count=1) override try |
| DX_PRAGMA_IGNORE_RETURN_VALUE_END uint64_t | signalled () const |
| DX_PRAGMA_IGNORE_RETURN_VALUE_END event & | wait (bool reset=false) override try |
| template<typename rep_t, typename period_t> |
| DX_PRAGMA_IGNORE_RETURN_VALUE_END bool | wait (const std::chrono::duration< rep_t, period_t > &timeout, bool reset=false) try |
| | ~promoted () |
\ 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
for synchronous operation: move lock to commit for asynchronous operation: store lock and at asynchronous response restore and move lock to commit