// CountClientInterface


import java.rmi.*;

public interface CountClientInterface extends Remote {
  void update(int val) throws RemoteException;
}