| 290 | } |
| 291 | |
| 292 | std::vector<std::string> ConfigurableComponent::getDynamicPropertyKeys() const { |
| 293 | std::lock_guard<std::mutex> lock(configuration_mutex_); |
| 294 | |
| 295 | std::vector<std::string> result; |
| 296 | |
| 297 | for (const auto &pair : dynamic_properties_) { |
| 298 | result.emplace_back(pair.first); |
| 299 | } |
| 300 | |
| 301 | return result; |
| 302 | } |
| 303 | |
| 304 | std::map<std::string, Property> ConfigurableComponent::getProperties() const { |
| 305 | std::lock_guard<std::mutex> lock(configuration_mutex_); |
no outgoing calls
no test coverage detected