kevdoran commented on code in PR #10476:
URL: https://github.com/apache/nifi/pull/10476#discussion_r2523428187
##########
nifi-framework-bundle/nifi-framework/nifi-framework-components/src/main/java/org/apache/nifi/controller/flow/AbstractFlowManager.java:
##########
@@ -732,4 +734,24 @@ private void removeRuleViolationsForSubject(String
identifier) {
ruleViolationsManager.removeRuleViolationsForSubject(identifier);
}
}
+
+ @Override
+ public Set<ComponentNode> getAllListenComponents() {
+
+ final Set<ComponentNode> allListenComponents = new HashSet<>();
+
+ // TODO improve performance by adding hooks to create/delete methods
to keep track of listen components in a new hash map
Review Comment:
Yeah started to look into this yesterday, and it's complicated enough that
it should be a follow up task. Will do.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]