Package org.chaidb.db.log.logrecord

Examples of org.chaidb.db.log.logrecord.TxnRegopLogRecord


        /* Remove it from parent. */
        if (parent != null) parent.getChilds().remove(new Integer(txnId));
        //To guarantee add one commit log record before removing txn from active txn list
        if (isCommit) {
            deleteAndLoggingDeletedFiles();
            (new TxnRegopLogRecord(TXN_COMMIT, (new Date()).getTime(), this.txnId)).log(TXN_SYNC);
        }

        /* Remove this transaction from transaction chain in the transaction manager. */
        lnkTransactionManager.getTxnChain().remove(new Integer(txnId));

View Full Code Here

TOP

Related Classes of org.chaidb.db.log.logrecord.TxnRegopLogRecord

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.