projet-donnees-reparties/linda/server/LindaServer.java

59 lines
1.5 KiB
Java
Raw Normal View History

2021-11-30 16:39:17 +00:00
package linda.server;
import java.util.Collection;
import java.rmi.server.UnicastRemoteObject;
import java.rmi.*;
2021-11-30 16:39:17 +00:00
import linda.Callback;
import linda.Linda;
import linda.Tuple;
import linda.shm.CentralizedLinda;
/**
* lindaServer
*/
public class LindaServer extends UnicastRemoteObject implements LindaRemote {
2021-11-30 16:39:17 +00:00
Linda lindaInstance;
public LindaServer() throws RemoteException {
this.lindaInstance = new CentralizedLinda();
}
public void write(Tuple t) {
lindaInstance.write(t);
}
public Tuple take(Tuple template) throws RemoteException {
2021-11-30 16:39:17 +00:00
return lindaInstance.take(template);
}
public Tuple read(Tuple template) throws RemoteException {
2021-11-30 16:39:17 +00:00
return lindaInstance.read(template);
}
public Tuple tryTake(Tuple template) throws RemoteException {
2021-11-30 16:39:17 +00:00
return lindaInstance.tryTake(template);
}
public Tuple tryRead(Tuple template) throws RemoteException {
2021-11-30 16:39:17 +00:00
return lindaInstance.tryRead(template);
}
public Collection<Tuple> takeAll(Tuple template) throws RemoteException {
2021-11-30 16:39:17 +00:00
return lindaInstance.takeAll(template);
}
public Collection<Tuple> readAll(Tuple template) throws RemoteException {
2021-11-30 16:39:17 +00:00
return lindaInstance.readAll(template);
}
public void eventRegister(Linda.eventMode mode, Linda.eventTiming timing, Tuple template, Callback callback) throws RemoteException {
2021-11-30 16:39:17 +00:00
lindaInstance.eventRegister(mode, timing, template, callback);
}
public void debug(String prefix) throws RemoteException {
2021-11-30 16:39:17 +00:00
lindaInstance.debug(prefix);
}
}