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

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

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){

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy