import java.rmi.*; public interface rmibb extends Remote { // don't use "synchronized" modifier here: public void produce(int x) throws RemoteException; public int consume() throws RemoteException; }