![JAR search and dependency download from the Maven repository](/logo.png)
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)
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){
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy