Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Refunding the restart mechanism.
[hpcvm.git] / src / and / hpcvm / ServicesClient.java
index 6e4945c..fffec81 100644 (file)
@@ -38,17 +38,21 @@ public interface ServicesClient extends Remote
        
        public void saveOk() throws RemoteException ;
        
+       public void responseSave( boolean _b ) throws RemoteException ;
+       
+       public Integer deployVM( String _name, String _archive, String _directory ) throws RemoteException ;
+       
        public void changeSaveName( String _n1, String _n2, int _id ) throws RemoteException ;
        
-       public void setSavingNeighbor( ServicesClient _sn ) throws RemoteException ;
+       public void setSaveNeighbor( SaveNeighbor _sn ) throws RemoteException ;
        
-       public void setSavingNeighbors( ArrayList<ServicesClient> _sn ) throws RemoteException ;
+       public void setSaveNeighbors( ArrayList<SaveNeighbor> _sn ) throws RemoteException ;
        
-       public void addSavingNeighbor( ServicesClient _sn ) throws RemoteException ;
+       public void addSaveNeighbor( SaveNeighbor _sn ) throws RemoteException ;
        
-       public void addSavingNeighbors( ArrayList<ServicesClient> _sn ) throws RemoteException ;
+       public void addSaveNeighbors( ArrayList<SaveNeighbor> _sn ) throws RemoteException ;
        
-       public void replaceSavingNeighbor( ServicesClient _old, ServicesClient _new ) throws RemoteException ;
+       public void replaceSaveNeighbor( SaveNeighbor _old, SaveNeighbor _new ) throws RemoteException ;
        
        public int retrieveSave( String _saveName ) throws RemoteException ;