From a45e086dc57f51efb882bf864e78fe678238deea Mon Sep 17 00:00:00 2001 From: Ratan Gupta Date: Wed, 21 Feb 2018 19:03:13 +0530 Subject: Add callback contexts Add the notion of a callback context. This enables callbacks to have logic around the conditions they were invoked in. There are two context on which call back can be invoked 1) Startup: during startup all the call backs will be called 2) Signal: As part of condition match on the watched properties. Callback would behave differently based on the context. eg: eventCallback 1) Startup: Don't take any action. 2) Signal: Create the Dbus Object for the event. Change-Id: If455558798ac3e44bbd8a93de0ce1b09d2e308ae Signed-off-by: Ratan Gupta --- src/data_types.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/data_types.hpp') diff --git a/src/data_types.hpp b/src/data_types.hpp index 1ba0b8a..12d1d6d 100644 --- a/src/data_types.hpp +++ b/src/data_types.hpp @@ -21,6 +21,12 @@ constexpr auto propertyIndex = 2; constexpr auto valueIndex = 2; constexpr auto metaIndex = 1; +enum class Context +{ + START, + SIGNAL, +}; + /** @brief A map with references as keys. */ template using RefKeyMap = std::map, Value, std::less>; -- cgit v1.2.1