Wednesday 21 May 2014

Example for RemoteMethodInvocation

import java.rmi.Remote;
import java.rmi.RemoteException;
public interface EUStats extends Remote {
String getMainLanguages(String CountryName)
throws RemoteException;
int getPopulation(String CountryName)
throws RemoteException;
String getCapitalName(String CountryName)
throws RemoteException;
}

No comments:

Post a Comment