1 43 package org.objectweb.jotm; 44 45 import java.rmi.Remote ; 46 import java.rmi.RemoteException ; 47 48 54 public interface Coordinator extends Remote { 55 56 60 public int get_status() throws RemoteException ; 61 62 68 public boolean is_same_transaction(Coordinator tc) throws RemoteException ; 69 70 75 public RecoveryCoordinator register_resource(Resource r) 76 throws RemoteException ; 77 78 82 public void register_synchronization(RemoteSynchro sync) 83 throws RemoteException ; 84 85 88 public void rollback_only() throws RemoteException ; 89 90 94 public String get_transaction_name() throws RemoteException ; 95 } 96 | Popular Tags |