arpadboda commented on a change in pull request #734: MINIFICPP-1157 Implement 
lightweight C2 heartbeat.
URL: https://github.com/apache/nifi-minifi-cpp/pull/734#discussion_r385210528
 
 

 ##########
 File path: libminifi/include/core/state/nodes/MetricsBase.h
 ##########
 @@ -228,6 +228,20 @@ class NodeReporter {
    */
   virtual int16_t getMetricsNodes(std::vector<std::shared_ptr<ResponseNode>> 
&metric_vector, uint16_t metricsClass) = 0;
 
+  /**
+   * Retrieves agent information with manifest only from this source.
+   * @param manifest_vector -- manifest nodes vector.
+   * @return 0 on Success, -1 on failure
+   */
+  virtual int16_t 
getManifestNodes(std::vector<std::shared_ptr<state::response::ResponseNode>>& 
manifest_vector) const = 0;
+
+  /**
+   * Returns a response node containing all agent information with manifest 
and agent status
+   * @return a shared pointer to agent information
+   */
+  virtual std::shared_ptr<state::response::ResponseNode> getAgentInformation() 
const {
+      return nullptr;
 
 Review comment:
   This looks a bit dangerous.
   I don't really like functions returning nullptr by default.
   Either:
   -Make it pure virtual
   -Return empty node to make sure the caller won't crash at least
   -Throw an exception here in case this should never be called

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to