Github user achristianson commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/148#discussion_r145748583
--- Diff: libminifi/include/FlowFileRecord.h ---
@@ -164,6 +164,11 @@ class FlowFileRecord : public core::FlowFile, public
io::Serializable {
return content_full_fath_;
}
+ /**
+ * Cleanly relinquish a resource claim
+ */
--- End diff --
The flowfile is releasing its own claim to the resource. There are a few
cases where the flow file has a claim to a resource that it should release to
any other components that might have a claim on the resource (which might
currently be a hypothetical-only case).
---