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

db.sql.api.cmd.executor.DBRunnable Maven / Gradle / Ivy

package db.sql.api.cmd.executor;

import db.sql.api.DbType;

import java.util.function.Consumer;

public interface DBRunnable {

    T onDB(DbType dbType, Consumer consumer);

    T elseDB(Consumer consumer);

    void runOnDB(DbType dbType, E e);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy