Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move Java examples to examples/java/.
[simgrid.git] / examples / java / startKillTime / Master.java
diff --git a/examples/java/startKillTime/Master.java b/examples/java/startKillTime/Master.java
new file mode 100644 (file)
index 0000000..eb04346
--- /dev/null
@@ -0,0 +1,27 @@
+/*
+ * 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 startKillTime;
+import org.simgrid.msg.Host;
+import org.simgrid.msg.HostFailureException;
+import org.simgrid.msg.HostNotFoundException;
+import org.simgrid.msg.TransferFailureException;
+import org.simgrid.msg.TimeoutException;
+import org.simgrid.msg.Msg;
+import org.simgrid.msg.Process;
+
+
+public class Master extends Process {
+       public Master(Host host, String name, String[]args) {
+               super(host,name,args);
+       } 
+       public void main(String[] args) throws TransferFailureException, HostFailureException, TimeoutException {
+               Msg.info("Hello!");
+               waitFor(10.0);
+               Msg.info("OK, goodbye now.");
+       
+  }
+}