Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
modifiers in right order
[simgrid.git] / examples / java / async / dsend / Sender.java
1 /* Copyright (c) 2006-2014, 2016. 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 async.dsend;
8
9 import org.simgrid.msg.Msg;
10 import org.simgrid.msg.Host;
11 import org.simgrid.msg.Task;
12 import org.simgrid.msg.Process;
13 import org.simgrid.msg.MsgException;
14
15 public class Sender extends Process {
16   public Sender (Host host, String name){
17     super(host,name);
18   }
19
20   public void main(String[] args) throws MsgException {
21     double taskComputeSize =0;
22     double taskCommunicateSize = 5000000;
23     Host[] hosts = Host.all();
24     int receiverCount = hosts.length - 1;
25
26     Msg.info("Hello! Got "+ receiverCount + " receivers to contact");
27
28     for (int i = 1; i <= receiverCount; i++) {
29       Task task = new Task("Task_" + i, taskComputeSize, taskCommunicateSize); 
30       Msg.info("Sending \"" + task.getName()+ "\" to \"" + hosts[i].getName() + "\"");
31       task.dsend(hosts[i].getName());
32     }
33
34     Msg.info("All tasks have been (asynchronously) dispatched."+
35              " Let's sleep for 10s so that nobody gets a message from a terminated process.");
36
37     waitFor(20);
38
39     Msg.info("Goodbye now!");
40   }
41 }