com.xxdb.DBConnectionPool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dolphindb-javaapi Show documentation
Show all versions of dolphindb-javaapi Show documentation
The messaging and data conversion protocol between Java and DolphinDB server
package com.xxdb;
import java.util.List;
public interface DBConnectionPool {
void execute(List tasks);
void execute(DBTask task);
int getConnectionCount();
void shutdown();
void waitForThreadCompletion();
}