2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-06-13 11:33:00 +02:00
|
|
|
|
|
|
|
#ifndef EVENTCOMMAND_H
|
|
|
|
#define EVENTCOMMAND_H
|
|
|
|
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "icinga/eventcommand-ti.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/checkable.hpp"
|
2013-06-13 11:33:00 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An event handler command.
|
|
|
|
*
|
2013-08-20 08:29:38 +02:00
|
|
|
* @ingroup icinga
|
2013-06-13 11:33:00 +02:00
|
|
|
*/
|
2018-01-04 06:11:04 +01:00
|
|
|
class EventCommand final : public ObjectImpl<EventCommand>
|
2013-06-13 11:33:00 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(EventCommand);
|
|
|
|
DECLARE_OBJECTNAME(EventCommand);
|
2013-06-13 11:33:00 +02:00
|
|
|
|
2014-11-13 11:23:57 +01:00
|
|
|
virtual void Execute(const Checkable::Ptr& checkable,
|
2017-12-19 15:50:05 +01:00
|
|
|
const Dictionary::Ptr& resolvedMacros = nullptr,
|
|
|
|
bool useResolvedMacros = false);
|
2013-06-13 11:33:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* EVENTCOMMAND_H */
|