Package com.sleepycat.je.txn.TxnChain

Examples of com.sleepycat.je.txn.TxnChain.CompareSlot


            if (db == null) {
                throw EnvironmentFailureException.unexpectedState
                    ("Database info not available for DB ID: " + dbId);
            }
            return lnNodesSeen.add(new CompareSlot(db, lnEntry));
        }

        return false;
    }
View Full Code Here


        final LNLogEntry undoEntry = undo.logEntry;
        final long abortLsn = undoEntry.getAbortLsn();
        if (abortLsn != DbLsn.NULL_LSN) {
            return seenLsns.add(abortLsn);
        }
        final CompareSlot slot = new CompareSlot(undo.db, undoEntry);
        return seenSlots.add(slot);
    }
View Full Code Here

                summary.recalcObsoleteLNSize += size;
            }
            if (commit && dbImpl != null) {
                /* Count committed LN. */
                lnEntry.postFetchInit(dbImpl);
                final CompareSlot slot = new CompareSlot(dbImpl, lnEntry);
                countObsoleteLN(slot);
                if (dbImpl.isDeleteFinished() || lnEntry.isDeleted()) {
                    activeLNs.remove(slot);
                } else {
                    putActiveLN(slot, size, summary,
View Full Code Here

TOP

Related Classes of com.sleepycat.je.txn.TxnChain.CompareSlot

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.