22 lines
580 B
Java
22 lines
580 B
Java
|
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
|
||
|
|
||
|
}
|