Can someone verify if i understand java RMI correctly?
If I had:
public class Server extends UnicastRemoteObject
{
public Server() throws RemoteException
{
super();
if (System.getSecurityManager() == null)
{
System.setSecurityManager(new RMISecurityManager());
}
try
{
Naming.rebind("rmi://someAddress/someName" , this);
}
catch (MalformedURLException ex)
{
}
catch (ConnectException ex)
{
}
/* do sometnig else there */
}
}
would that mean that if 100 clients connect, RMI would create 100 copies of this server as threads to facilitate those clients (without my further intervention)?