martinzink commented on code in PR #2227:
URL: https://github.com/apache/nifi-minifi-cpp/pull/2227#discussion_r3727294970
##########
minifi-api/include/minifi-cpp/agent/agent_docs.h:
##########
@@ -51,39 +57,125 @@ struct ClassDescription {
bool isSingleThreaded_ = false;
};
-struct Components {
- std::vector<ClassDescription> processors;
- std::vector<ClassDescription> controller_services;
- std::vector<ClassDescription> parameter_providers;
- std::vector<ClassDescription> other_components;
+struct BundleCoordinate {
+ std::string name;
+ std::string group_name;
+ std::string version;
+
+ auto operator<=>(const BundleCoordinate& rhs) const = default;
+};
Review Comment:
yeah, I changed it to mimic NiFi
--
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]