Interface ResultSetProcessHandler<T>

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 interface ResultSetProcessHandler<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    end(boolean noDataPermission, int length, Exception e)
     
    void
    process(int index, T t, ResultSet resultSet)
     
    default void
     
  • Method Details

    • start

      default void start()
    • process

      void process(int index, T t, ResultSet resultSet)
    • end

      default void end(boolean noDataPermission, int length, Exception e)