Interface Processor


public interface Processor
This interface must be implemented by each processor class that is used for post-processing the result data
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Cleans up the processor.
    boolean
    processRow(DataRow rowToProcess)
    Process the specified row.
  • Method Details

    • processRow

      boolean processRow(DataRow rowToProcess)
      Process the specified row.
      Parameters:
      rowToProcess - The row to be processed
      Returns:
      true if the row has to be removed from the result set
    • cleanup

      void cleanup()
      Cleans up the processor.