X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/06cc5b34eccf67f299861b27a1a367b079fc8d3d..c7061a82b255f05ad7e1f0a03acc34433e02f4fa:/examples/scala/master_slave_kill/Slave.scala diff --git a/examples/scala/master_slave_kill/Slave.scala b/examples/scala/master_slave_kill/Slave.scala deleted file mode 100644 index 2d503684e5..0000000000 --- a/examples/scala/master_slave_kill/Slave.scala +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) 2006-2013. 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.MsgException -import org.simgrid.msg.Task -import org.simgrid.msg.TimeoutException -import org.simgrid.msg.TransferFailureException -import org.simgrid.msg.Process - -class Slave(hostname:String, name:String) extends Process(hostname, name) { - def main(args:Array[String]) { - Msg.info("Slave Hello!") - - val task = new FinalizeTask(); - Msg.info("Send Mail1!"); - task.send("mail1"); - - try { - Task.receive("mail2"); - } catch { - case e:MsgException => {Msg.debug("Received failed") - return} - } - Msg.info("Receive Mail2!") - } -}