1 4 5 package org.objectweb.perseus.fos.api; 6 7 import javax.transaction.xa.Xid ; 8 9 13 public interface FosManager extends FosAttributeControler, FosLoggerFactory { 14 static final String SPECVERSION = "1.01"; 15 16 void start() throws FosException; 17 18 void stop() throws FosException; 19 20 25 void initialize() throws FosException; 26 27 33 Xid [] getXidForRecovery(); 34 35 39 FosTransaction createTxContext() throws FosException; 40 41 45 void releaseTxContext(FosTransaction txc) throws FosException; 46 } 47 | Popular Tags |