icinga2/lib/icinga/eventcommand.hpp

33 lines
614 B
C++
Raw Normal View History

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