// Count Interface

import java.rmi.*;

public interface Count extends Remote {
  void set(int val) throws RemoteException;
  void reset() throws RemoteException;
  int get() throws RemoteException;
  int increment() throws RemoteException;
}

© Ivan Luiz Marques Ricarte
DCA/FEEC/UNICAMP

Last modified: Mon Nov 6 14:53:11 EDT 2000