Package org.exist.storage.journal

Examples of org.exist.storage.journal.JournalReader.lastEntry()


      final JournalReader reader = new JournalReader(broker, last, lastNum);
            try {
              // try to read the last log record to see if it is a checkpoint
              boolean checkpointFound = false;
          try {
                    final Loggable lastLog = reader.lastEntry();
                    if (lastLog != null && lastLog.getLogType() == LogEntryTypes.CHECKPOINT) {
                      final Checkpoint checkpoint = (Checkpoint) lastLog;
                      // Found a checkpoint. To be sure it is indeed a valid checkpoint
                      // record, we compare the LSN stored in it with the current LSN.
                      if (checkpoint.getStoredLsn() == checkpoint.getLsn()) {
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.