-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServer_itf.java
31 lines (23 loc) · 1.05 KB
/
Server_itf.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import java.rmi.Remote;
import java.rmi.RemoteException;
import java.util.Set;
public interface Server_itf extends java.rmi.Remote {
// architecture nécessaire au démarrage : serveur dans registry,
// tous sites enregistrés auprès du serveur
// enregistre un site et récupère la liste complète (cardinal connu au
// lancement)
public Set<Client_itf> addClient(Client_itf client) throws RemoteException;
// nommage des objets partagés
public int lookup(String name) throws java.rmi.RemoteException;
// create+bind
public int publish(String name, Object o, boolean reset) throws RemoteException;
// liste des noms enregistrés
public String[] list() throws RemoteException;
// le serveur centralise (-> ordonne) les écritures. Renvoie le numéro de
// version
public int write(int idObjet, Object valeur) throws RemoteException;
// instrumentation
public Set<Client_itf> setMonitor(Moniteur m) throws RemoteException;
public Moniteur getMonitor() throws RemoteException;
public boolean isWriter(Client_itf client) throws RemoteException;
}