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

Method getConnections

libminifi/src/core/ProcessGroup.cpp:313–321  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

311}
312
313void ProcessGroup::getConnections(std::map<std::string, std::shared_ptr<Connection>> &connectionMap) {
314 for (auto connection : connections_) {
315 connectionMap[connection->getUUIDStr()] = connection;
316 connectionMap[connection->getName()] = connection;
317 }
318 for (auto processGroup : child_process_groups_) {
319 processGroup->getConnections(connectionMap);
320 }
321}
322
323void ProcessGroup::getConnections(std::map<std::string, std::shared_ptr<Connectable>> &connectionMap) {
324 for (auto connection : connections_) {

Callers 5

loadFlowRepoMethod · 0.80
clearConnectionMethod · 0.80
initializeMethod · 0.80

Calls 2

getUUIDStrMethod · 0.45
getNameMethod · 0.45

Tested by

no test coverage detected