Examples of CatastrophicTxnRecoverImpl


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

    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
Copyright © 2018 www.massapi.com. 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.