Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rewrite the example in order to make clear on how a process can create
[simgrid.git] / examples / master_slave_bypass / Slave.java
index 84de81c..3056f1c 100644 (file)
@@ -12,11 +12,16 @@ import org.simgrid.msg.TimeoutException;
 import org.simgrid.msg.TransferFailureException;
 import org.simgrid.msg.Process;
 
+import master_slave_bypass.FinalizeTask;
+
 public class Slave extends Process {
        public Slave(String hostname, String name) throws HostNotFoundException {
                super(hostname, name);
        }
        public void main(String[] args) throws TransferFailureException, HostFailureException, TimeoutException {
        Msg.info("Slave Hello!");
+       FinalizeTask task = new FinalizeTask();
+       Msg.info("Send finalize!");
+       task.send("alice");
        }
 }
\ No newline at end of file