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

org.sfm.utils.RowHandler Maven / Gradle / Ivy

package org.sfm.utils;

/**
 * Functional interface use to provide call back when the jdbcMapper is getting new value.

* It is equivalent to a {@link java.util.function.Consumer} apart that it allows for checked Exception. * * @param the type of the call back argument */ public interface RowHandler { void handle(T t) throws Exception; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy