1 8 9 package com.sleepycat.je.txn; 10 11 import com.sleepycat.je.log.LogEntryType; 12 13 16 public class TxnCommit extends TxnEnd { 17 public TxnCommit(long id, long lastLsn) { 18 super(id, lastLsn); 19 } 20 21 24 public TxnCommit() { 25 } 26 27 30 31 34 public LogEntryType getLogType() { 35 return LogEntryType.LOG_TXN_COMMIT; 36 } 37 38 protected String getTagName() { 39 return "TxnCommit"; 40 } 41 } 42 | Popular Tags |