1 8 9 package com.sleepycat.je.log; 10 11 import java.nio.ByteBuffer ; 12 13 17 public interface LogReadable { 18 19 23 public void readFromLog(ByteBuffer itemBuffer, byte entryTypeVersion) 24 throws LogException; 25 26 33 public void dumpLog(StringBuffer sb, boolean verbose); 34 35 38 public boolean logEntryIsTransactional(); 39 40 44 public long getTransactionId(); 45 } 46 | Popular Tags |