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

net.cassite.daf4j.ds.TxManager Maven / Gradle / Ivy

The newest version!
package net.cassite.daf4j.ds;

/**
 * 事务管理器
 */
public interface TxManager {
        /**
         * 开启事务
         */
        void txBegin();

        /**
         * 提交事务
         */
        void txCommit();

        /**
         * 回滚事务
         */
        void txRollback();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy