Interface ResultSetToTuple.TupleProcessor<T extends Tuple>

Enclosing class:
ResultSetToTuple
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public static interface ResultSetToTuple.TupleProcessor<T extends Tuple>
FunctionalInterface to define lambdas for processing each Tuple in a ResultSet.
  • Method Summary

    Modifier and Type Method Description
    void process​(T tupleType)
    Process a tuple.
  • Method Details

    • process

      void process​(T tupleType) throws java.lang.Throwable
      Process a tuple.
      Parameters:
      tupleType - A tuple of type T (which extends Tuple.)
      Throws:
      java.lang.Throwable - Any error generated by processing.