1 22 package org.jboss.tm.recovery; 23 24 import java.util.List ; 25 26 33 public interface RecoveryLogReader 34 { 35 40 String getLogFileName(); 41 42 47 String getBranchQualifier(); 48 49 72 void recover(List committedSingleTmTransactions, 73 List committedMultiTmTransactions, 74 List inDoubtTransactions, 75 List inDoubtJcaTransactions); 76 77 80 void finishRecovery(); 81 } 82 | Popular Tags |