Github user phrocker commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/416#discussion_r223390733
--- Diff: libminifi/include/capi/Plan.h ---
@@ -79,6 +79,8 @@ class ExecutionPlan {
return content_repo_;
}
+ static std::shared_ptr<core::Processor> createProcessor(const
std::string &processor_name, const std::string &name);
--- End diff --
We probably don't have a need to propagate a name since this isn't a real
flow. Not inherently against this but we probably want to facilitate creating
processors with a simple few commands without the need to have a level of
indirection of naming -- this was purposeful to avoid that layer.
---