kz.greetgo.db.TransactionManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.db Show documentation
Show all versions of greetgo.db Show documentation
DB utils using in greetgo!
The newest version!
package kz.greetgo.db;
import javax.sql.DataSource;
import java.sql.Connection;
public interface TransactionManager {
Connection getConnection(DataSource dataSource);
void upLevel(CallMeta isolationLevel);
void downLevel(Throwable throwable);
void closeConnection(DataSource dataSource, Connection connection);
}