MCPcopy Create free account
hub / github.com/apache/nifi-minifi-cpp / getDynamicPropertyKeys

Method getDynamicPropertyKeys

libminifi/src/core/ConfigurableComponent.cpp:292–302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

290}
291
292std::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
304std::map<std::string, Property> ConfigurableComponent::getProperties() const {
305 std::lock_guard<std::mutex> lock(configuration_mutex_);

Callers 7

processOnScheduleMethod · 0.45
fillUserMetadataMethod · 0.45
processMethod · 0.45
onScheduleMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected