com.objectsql.handler.ResultSetProcessHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of object-sql Show documentation
Show all versions of object-sql Show documentation
Lightweight Object SQL Relational Mapping (OSRM)
The newest version!
package com.objectsql.handler;
import java.sql.ResultSet;
@FunctionalInterface
public interface ResultSetProcessHandler {
default void start(){
}
void process(int index, T t, ResultSet resultSet);
default void end(boolean noDataPermission, int length, Exception e){
}
}