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

com.xxdb.DBConnectionPool Maven / Gradle / Ivy

There is a newer version: 3.00.2.2
Show newest version
package com.xxdb;

import java.util.List;

public interface DBConnectionPool {
	void execute(List tasks);
	void execute(DBTask task);
	int getConnectionCount();
	void shutdown();
	void waitForThreadCompletion();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy