1 33 34 package edu.rice.cs.util.newjvm; 35 36 import edu.rice.cs.util.Log; 37 38 import java.rmi.*; 39 40 43 public interface MasterRemote extends Remote { 46 47 48 public void registerSlave(SlaveRemote slave) throws RemoteException; 49 50 51 public void checkStillAlive() throws RemoteException; 52 53 56 public void errorStartingSlave(Throwable cause) throws RemoteException; 57 } 58 | Popular Tags |