Project

General

Profile

Statistics
| Revision:

root / proj / src / RMI.java @ 1

History | View | Annotate | Download (270 Bytes)

1

    
2
import java.rmi.Remote;
3
import java.rmi.RemoteException;
4

    
5
public interface RMI extends Remote {
6
   void operation(String operation, String file_path, int rep_degree, double space) throws RemoteException; //operator is space for reclaim, rep_degree for back up
7

    
8
}