| 3050 | } |
| 3051 | |
| 3052 | void IcingaDB::DependencyGroupChildRemovedHandler(const DependencyGroup::Ptr& dependencyGroup, const std::vector<Dependency::Ptr>& dependencies, bool removeGroup) |
| 3053 | { |
| 3054 | for (const auto& rw : ConfigType::GetObjectsByType<IcingaDB>()) { |
| 3055 | rw->EnqueueDependencyChildRemoved(dependencyGroup, dependencies, removeGroup); |
| 3056 | } |
| 3057 | } |
| 3058 | |
| 3059 | void IcingaDB::HostProblemChangedHandler(const Service::Ptr& service) { |
| 3060 | for (auto& rw : ConfigType::GetObjectsByType<IcingaDB>()) { |
nothing calls this directly
no test coverage detected