Files
DistributedSystems/week3_TinsaeGhilay/Task 5/src/common/ClientInterface.java
2025-12-22 00:26:19 +01:00

17 lines
277 B
Java

package common;
/**
* ClientInterface interface
*
* @author Tinsae Ghilay
*
*/
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface ClientInterface extends Remote {
void receiveMessage(String fromId, String message) throws RemoteException;
}