1 8 9 package com.sleepycat.je.log; 10 11 import com.sleepycat.je.DatabaseException; 12 13 16 public interface LoggableObject extends LogWritable { 17 18 23 public LogEntryType getLogType(); 24 25 29 public void postLogWork(long justLoggedLsn) 30 throws DatabaseException; 31 32 36 public boolean marshallOutsideWriteLatch(); 37 38 42 public boolean countAsObsoleteWhenLogged(); 43 } 44 | Popular Tags |