Github user phrocker commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/448#discussion_r239110104
--- Diff: nanofi/include/core/cstructs.h ---
@@ -114,4 +126,6 @@ typedef enum FS {
ROLLBACK
} FailureStrategy;
+typedef void (processor_logic)(processor_session*, processor_context *);
--- End diff --
You have a comment, below, about accessing properties not being supported.
Does that mean that processor_logic will go in tandem with processor
configuration somehow?
---