esame programmazione distribuita + readme

This commit is contained in:
2015-01-17 03:59:20 +01:00
parent cff4e01e21
commit c0ac42f3e9
9 changed files with 382 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package rmi_exam;
import java.rmi.Remote;
import java.rmi.RemoteException;
/**
* Created by Giovanni on 16/01/2015.
*/
public interface ServerInterface extends Remote {
boolean dici (ClientInterface c, String m) throws RemoteException;
boolean vota (ClientInterface c, boolean v) throws RemoteException;
void iscriviti (ClientInterface c, String n) throws RemoteException;
void disiscriviti (ClientInterface c) throws RemoteException;
}