X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a8cd62135619ad52e05ae1c929ef07e166e4260..b558f9b18c938af6a35ebea66ac2323a60178202:/simgrid-java/examples/master_slave_bypass/Slave.java diff --git a/simgrid-java/examples/master_slave_bypass/Slave.java b/simgrid-java/examples/master_slave_bypass/Slave.java deleted file mode 100644 index a66a80d55e..0000000000 --- a/simgrid-java/examples/master_slave_bypass/Slave.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * 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_bypass; -import org.simgrid.msg.HostFailureException; -import org.simgrid.msg.HostNotFoundException; -import org.simgrid.msg.Msg; -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