Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[java] Add missing throw NativeException specifications, fix javadoc
[simgrid.git] / examples / java / master_slave_bypass / Slave.java
1 /* Copyright (c) 2006-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 package master_slave_bypass;
8 import org.simgrid.msg.HostFailureException;
9 import org.simgrid.msg.HostNotFoundException;
10 import org.simgrid.msg.Msg;
11 import org.simgrid.msg.TimeoutException;
12 import org.simgrid.msg.TransferFailureException;
13 import org.simgrid.msg.NativeException;
14 import org.simgrid.msg.Process;
15
16 import master_slave_bypass.FinalizeTask;
17
18 public class Slave extends Process {
19         public Slave(String hostname, String name) throws HostNotFoundException {
20                 super(hostname, name);
21         }
22         public void main(String[] args) throws TransferFailureException, HostFailureException, TimeoutException, NativeException {
23         Msg.info("Slave Hello!");
24         FinalizeTask task = new FinalizeTask();
25         Msg.info("Send finalize!");
26         task.send("Jacquelin");
27         }
28 }