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

22 lines
580 B
Java
Raw Normal View History

2021-11-27 16:50:33 +00:00
package linda.server;
import linda.Callback;
import linda.Linda;
import linda.Tuple;
/** Client part of a client/server implementation of Linda.
* It implements the Linda interface and propagates everything to the server it is connected to.
* */
public class LindaClient implements Linda {
/** Initializes the Linda implementation.
* @param serverURI the URI of the server, e.g. "rmi://localhost:4000/LindaServer" or "//localhost:4000/LindaServer".
*/
public LindaClient(String serverURI) {
// TO BE COMPLETED
}
// TO BE COMPLETED
}