Up Previous Next

We already have a program that could be distributed over the network.

Here's the first of several changes:

import java.rmi.*; 

public interface ServerInterface extends Remote {
  public int register(ClientInterface client) throws RemoteException;
} 
Although these changes are important, they don't affect the logic of our program.


Up Previous Next