Package com.sleepycat.je.txn

Examples of com.sleepycat.je.txn.WriteLockInfo


        long logAbortLsn;
  boolean logAbortKnownDeleted;
        Txn logTxn;
        if (locker != null && locker.isTransactional()) {
            entryType = getTransactionalLogType();
      WriteLockInfo info = locker.getWriteLockInfo(getNodeId());
      logAbortLsn = info.getAbortLsn();
      logAbortKnownDeleted = info.getAbortKnownDeleted();
            logTxn = locker.getTxnLocker();
            assert logTxn != null;
        } else {
            entryType = getLogType();
            logAbortLsn = DbLsn.NULL_LSN;
View Full Code Here

TOP

Related Classes of com.sleepycat.je.txn.WriteLockInfo

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.