Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / examples / deprecated / java / async / waitall / Sender.java
1 /* Copyright (c) 2006-2021. 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.waitall;
8
9 import org.simgrid.msg.Comm;
10 import org.simgrid.msg.Host;
11 import org.simgrid.msg.Msg;
12 import org.simgrid.msg.MsgException;
13 import org.simgrid.msg.Process;
14 import org.simgrid.msg.Task;
15
16 public class Sender extends Process {
17   public Sender (Host host, String name){
18     super(host,name);
19   }
20
21   @Override
22   public void main(String[] args) throws MsgException {
23     double taskComputeSize =0;
24     double taskCommunicateSize = 5000000;
25     Host[] hosts = Host.all();
26     int receiverCount = hosts.length - 1;
27
28     Msg.info("I have "+ receiverCount + " receivers to contact");
29
30     Comm[] communicators = new Comm[receiverCount];
31     for (int i = 1; i <= receiverCount; i++) {
32       Task task = new Task("Task_" + i, taskComputeSize, taskCommunicateSize); 
33       Msg.info("Start the Sending '" + task.getName()+ "' to '" + hosts[i].getName() + "'");
34       communicators[i-1] = task.isend(hosts[i].getName());
35     }
36
37     Msg.info("All tasks have been (asynchronously) dispatched. Let's wait for their completion.");
38     Comm.waitAll(communicators);
39
40     Msg.info("Goodbye now!");
41   }
42 }