Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Adding mechanism for application execution time retrievement plus bugs correction.
[hpcvm.git] / src / and / hpcvm / ServicesServer.java
index 60ac97b..863e393 100644 (file)
@@ -22,12 +22,17 @@ public interface ServicesServer extends Remote
        
        public void endApplication() throws RemoteException ;
        
+       public void goApplication() throws RemoteException ;
+       
        public void stop() throws RemoteException ;
        
+       public void requestSave( String _ip ) throws RemoteException ;
+       
        public Integer deployVM( String _name, String _archive, String _directory ) throws RemoteException ;
        
        public String getWorkingDirectory() throws RemoteException ;
 
+       public void restartOk( String _ip ) throws RemoteException ;
 }