Up | Previous | Next |
Here's the first of several changes:
Although these changes are important, they don't affect the logic of our program.
import java.rmi.*; public interface ServerInterface extends Remote { public int register(ClientInterface client) throws RemoteException; }
Up | Previous | Next |