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

cq.database.pool.ConnectionPoolConfig Maven / Gradle / Ivy

The newest version!
package cq.database.pool;

public interface ConnectionPoolConfig {
    int min();  //最小连接数

    int max(); //最大连接数

    int refreshTime();  //刷新连接时间 (秒)

    boolean isRelease(); //自动关闭多余资源
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy