arpadboda commented on a change in pull request #533: MINIFICPP-726 - Enhance 
ExtractText to have more feature parity with …
URL: https://github.com/apache/nifi-minifi-cpp/pull/533#discussion_r274338136
 
 

 ##########
 File path: libminifi/include/processors/ExtractText.h
 ##########
 @@ -50,15 +50,26 @@ class ExtractText : public core::Processor {
     //! Supported Properties
     static core::Property Attribute;
     static core::Property SizeLimit;
+
+    static core::Property RegexMode;
+    static core::Property IgnoreCaptureGroupZero;
+    static core::Property InsensitiveMatch;
+    static core::Property MaxCaptureGroupLen;
+    static core::Property EnableRepeatingCaptureGroup;
+
     //! Supported Relationships
     static core::Relationship Success;
     //! Default maximum bytes to read into an attribute
     static constexpr int DEFAULT_SIZE_LIMIT = 2 * 1024 * 1024;
 
     //! OnTrigger method, implemented by NiFi ExtractText
-    void onTrigger(core::ProcessContext *context, core::ProcessSession 
*session) override;
+    void onTrigger(core::ProcessContext *context, core::ProcessSession 
*session);
     //! Initialize, over write by NiFi ExtractText
 
 Review comment:
   Fair point, although I would prefer removing such comments and use the 
standard way to indicate these.
   Further details in: https://issues.apache.org/jira/browse/MINIFICPP-29
   Most probably going to be scoped for 1.0

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

Reply via email to