Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.rmicallback.server;
- import com.rmicallback.client.ClientInterface;
- import java.rmi.Remote;
- import java.rmi.RemoteException;
- public interface ServerInterface extends Remote{
- public int setClientInterface(ClientInterface cli) throws RemoteException;
- public void action(int value) throws RemoteException;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement