1 22 package org.jboss.tm.remoting.interfaces; 23 24 import java.rmi.Remote ; 25 import java.rmi.RemoteException ; 26 27 import javax.transaction.HeuristicMixedException ; 28 29 30 36 public interface Terminator extends Remote  37 { 38 39 void commit(boolean reportHeuristics) 40 throws RemoteException , 41 HeuristicMixedException , 42 HeuristicHazardException; 43 44 void rollback() 45 throws RemoteException ; 46 47 } 48 | Popular Tags |