| 3064 | } |
| 3065 | |
| 3066 | void IcingaDB::AcknowledgementSetHandler(const Checkable::Ptr& checkable, const String& author, const String& comment, AcknowledgementType type, bool persistent, double changeTime, double expiry) |
| 3067 | { |
| 3068 | auto rws (ConfigType::GetObjectsByType<IcingaDB>()); |
| 3069 | |
| 3070 | if (!rws.empty()) { |
| 3071 | for (auto& rw : rws) { |
| 3072 | rw->SendAcknowledgementSet(checkable, author, comment, type, persistent, changeTime, expiry); |
| 3073 | } |
| 3074 | } |
| 3075 | } |
| 3076 | |
| 3077 | void IcingaDB::AcknowledgementClearedHandler(const Checkable::Ptr& checkable, const String& removedBy, double changeTime) |
| 3078 | { |
nothing calls this directly
no test coverage detected