Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move Java examples to examples/java/.
[simgrid.git] / examples / java / master_slave_kill / Slave.java
diff --git a/examples/java/master_slave_kill/Slave.java b/examples/java/master_slave_kill/Slave.java
new file mode 100644 (file)
index 0000000..8e85ef1
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+ * Copyright 2006-2012. The SimGrid Team. All rights reserved. 
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the license (GNU LGPL) which comes with this package. 
+ */
+package master_slave_kill;
+import org.simgrid.msg.HostFailureException;
+import org.simgrid.msg.HostNotFoundException;
+import org.simgrid.msg.Msg;
+import org.simgrid.msg.Task;
+import org.simgrid.msg.TimeoutException;
+import org.simgrid.msg.TransferFailureException;
+import org.simgrid.msg.Process;
+
+import master_slave_kill.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 Mail1!");
+       task.send("mail1");
+       
+       Task task2 = Task.receive("mail2");
+        Msg.info("Receive Mail2!");
+  }
+}