Class PutSQL.FlowFilePoll

java.lang.Object
org.apache.nifi.processors.standard.PutSQL.FlowFilePoll
Enclosing class:
PutSQL

private static class PutSQL.FlowFilePoll extends Object
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 Details

    • flowFiles

      private final List<FlowFile> flowFiles
    • fragmentedTransaction

      private final boolean fragmentedTransaction
  • Constructor Details

    • FlowFilePoll

      public FlowFilePoll(List<FlowFile> flowFiles, boolean fragmentedTransaction)
  • Method Details

    • getFlowFiles

      public List<FlowFile> getFlowFiles()
    • isFragmentedTransaction

      public boolean isFragmentedTransaction()