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

pers.clare.hisql.function.ConnectionOnlyCallback Maven / Gradle / Ivy

The newest version!
package pers.clare.hisql.function;

import java.sql.Connection;
import java.sql.SQLException;

@SuppressWarnings("RedundantThrows")
@FunctionalInterface
public interface ConnectionOnlyCallback {
    R apply(Connection connection) throws SQLException, IllegalAccessException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy