Package org.chaidb.db.transaction.recover

Examples of org.chaidb.db.transaction.recover.NormalTransactionRecoverImpl


     * @return The reference of TransactionRecover instance implements TransactionRecover interface.
     */
    public TransactionRecover setRecover(int type) {
        if (txnRecover == null) {
            if (type == TransactionRecover.NORMAL_RECOVER) {
                txnRecover = new NormalTransactionRecoverImpl(this);
            } else if (type == TransactionRecover.CATASTROPHIC_RECOVER) {
                txnRecover = new CatastrophicTxnRecoverImpl(this);
            }
        }
        return txnRecover;
View Full Code Here

TOP

Related Classes of org.chaidb.db.transaction.recover.NormalTransactionRecoverImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.