All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.objectsql.handler.ResultSetProcessHandler Maven / Gradle / Ivy

There is a newer version: 6.2
Show 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){

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy