Class PutSQL.FlowFilePoll
java.lang.Object
org.apache.nifi.processors.standard.PutSQL.FlowFilePoll
- Enclosing class:
PutSQL
A simple, immutable data structure to hold a List of FlowFiles and an indicator as to whether
or not those FlowFiles represent a "fragmented transaction" - that is, a collection of FlowFiles
that all must be executed as a single transaction (we refer to it as a fragment transaction
because the information for that transaction, including SQL and the parameters, is fragmented
across multiple FlowFiles).
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List
<org.apache.nifi.flowfile.FlowFile> private final boolean
-
Constructor Summary
ConstructorsConstructorDescriptionFlowFilePoll
(List<org.apache.nifi.flowfile.FlowFile> flowFiles, boolean fragmentedTransaction) -
Method Summary
-
Field Details
-
flowFiles
-
fragmentedTransaction
private final boolean fragmentedTransaction
-
-
Constructor Details
-
FlowFilePoll
public FlowFilePoll(List<org.apache.nifi.flowfile.FlowFile> flowFiles, boolean fragmentedTransaction)
-
-
Method Details
-
getFlowFiles
-
isFragmentedTransaction
public boolean isFragmentedTransaction()
-