1 28 29 package com.caucho.transaction.xalog; 30 31 import com.caucho.transaction.XidImpl; 32 33 import java.io.IOException ; 34 35 39 abstract public class AbstractXALogManager { 40 43 abstract public void start() 44 throws IOException ; 45 46 49 abstract public boolean hasCommittedXid(XidImpl xid); 50 51 54 abstract public AbstractXALogStream getStream(); 55 56 59 abstract public void flush(); 60 61 64 abstract public void close(); 65 } 66 | Popular Tags |