arpadboda commented on a change in pull request #664: WIP: MINIFICPP-1062 -
Improve FlowFile repository performance by leveraging batching
URL: https://github.com/apache/nifi-minifi-cpp/pull/664#discussion_r344712591
##########
File path: libminifi/test/unit/ProvenanceTestHelper.h
##########
@@ -71,11 +71,24 @@ class TestRepository : public core::Repository {
}
+ virtual bool isNoop() {
+ return false;
+ }
+
bool Put(std::string key, const uint8_t *buf, size_t bufLen) {
repositoryResults.insert(std::pair<std::string, std::string>(key,
std::string((const char*) buf, bufLen)));
return true;
}
+ bool MultiPut(const std::vector<std::tuple<std::string, const uint8_t *,
size_t>> data) {
Review comment:
Done
----------------------------------------------------------------
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