17#ifndef IOX_POSH_POPO_NOTIFICATION_INFO_HPP
18#define IOX_POSH_POPO_NOTIFICATION_INFO_HPP
20#include "iceoryx_hoofs/cxx/function_ref.hpp"
21#include "iceoryx_hoofs/error_handling/error_handling.hpp"
22#include "iceoryx_posh/internal/log/posh_logging.hpp"
23#include "iceoryx_posh/popo/notification_callback.hpp"
37 static constexpr uint64_t INVALID_ID = std::numeric_limits<uint64_t>::max();
78 void* m_notificationOrigin =
nullptr;
79 void* m_userValue =
nullptr;
80 uint64_t m_notificationOriginTypeHash = 0
U;
81 uint64_t m_notificationId = INVALID_ID;
83 internal::GenericCallbackPtr_t m_callbackPtr =
nullptr;
84 internal::TranslationCallbackPtr_t m_callback =
nullptr;
90#include "iceoryx_posh/internal/popo/notification_info.inl"
NotificationInfo holds the state of a trigger like the pointer to the triggerOrigin,...
Definition notification_info.hpp:35
NotificationInfo() noexcept=default
constructs an empty NotificationInfo
T * getOrigin() const noexcept
returns the pointer to the notificationOrigin.
bool doesOriginateFrom(T *const notificationOrigin) const noexcept
confirms the notificationOrigin
uint64_t getNotificationId() const noexcept
returns the notification id
The Trigger class is usually managed by a factory class like a WaitSet and acquired by classes which ...
Definition trigger.hpp:56
the struct describes a callback with a user defined type which can be attached to a WaitSet or a List...
Definition notification_callback.hpp:58