icinga2/lib/notification/notificationcomponent.hpp

39 lines
932 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef NOTIFICATIONCOMPONENT_H
#define NOTIFICATIONCOMPONENT_H
2018-01-18 13:50:38 +01:00
#include "notification/notificationcomponent-ti.hpp"
2014-05-25 16:23:35 +02:00
#include "icinga/service.hpp"
#include "base/configobject.hpp"
2014-05-25 16:23:35 +02:00
#include "base/timer.hpp"
2013-03-17 20:19:29 +01:00
namespace icinga
{
/**
* @ingroup notification
*/
2018-01-04 06:11:04 +01:00
class NotificationComponent final : public ObjectImpl<NotificationComponent>
{
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(NotificationComponent);
DECLARE_OBJECTNAME(NotificationComponent);
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
void Start(bool runtimeCreated) override;
void Stop(bool runtimeRemoved) override;
private:
Timer::Ptr m_NotificationTimer;
void NotificationTimerHandler();
2014-04-03 15:36:13 +02:00
void SendNotificationsHandler(const Checkable::Ptr& checkable, NotificationType type,
const CheckResult::Ptr& cr, const String& author, const String& text);
};
}
#endif /* NOTIFICATIONCOMPONENT_H */