| 3101 | } |
| 3102 | |
| 3103 | void IcingaDB::TimePeriodRangesChangedHandler(const TimePeriod::Ptr& timeperiod, const Dictionary::Ptr& oldValues, const Dictionary::Ptr& newValues) { |
| 3104 | for (const IcingaDB::Ptr& rw : ConfigType::GetObjectsByType<IcingaDB>()) { |
| 3105 | rw->SendTimePeriodRangesChanged(timeperiod, oldValues, newValues); |
| 3106 | } |
| 3107 | } |
| 3108 | |
| 3109 | void IcingaDB::TimePeriodIncludesChangedHandler(const TimePeriod::Ptr& timeperiod, const Array::Ptr& oldValues, const Array::Ptr& newValues) { |
| 3110 | for (const IcingaDB::Ptr& rw : ConfigType::GetObjectsByType<IcingaDB>()) { |
nothing calls this directly
no test coverage detected