Client Remote Interface
The client itself is implemented as a remote object with interface:
public interface Chatter extends Remote {
public void notify (Message m) throws RemoteException ;
. . .
}
The notify() method will be called by the server when a message has been posted.