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

Method findControllerService

libminifi/src/core/ProcessGroup.cpp:284–286  ·  view source on GitHub ↗

* Find controllerservice node will search child groups until the nodeId is found. * @param node node identifier * @return controller service node, if it exists. */

Source from the content-addressed store, hash-verified

282 * @return controller service node, if it exists.
283 */
284std::shared_ptr<core::controller::ControllerServiceNode> ProcessGroup::findControllerService(const std::string &nodeId) {
285 return controller_service_map_.getControllerServiceNode(nodeId);
286}
287
288void ProcessGroup::getAllProcessors(std::vector<std::shared_ptr<Processor>> &processor_vec) {
289 std::lock_guard<std::recursive_mutex> lock(mutex_);

Callers 3

loadYamlMethod · 0.80
mainFunction · 0.80

Calls 1

Tested by 3

loadYamlMethod · 0.64
mainFunction · 0.64