Interface Processor<T>


public interface Processor<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    process(T data)
    Process the given record.
  • Method Details

    • process

      boolean process(T data)
      Process the given record.
      Parameters:
      data - - the record to be processed
      Returns:
      true if further records should be processed, false if the processing loop should abort.