X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3ae712a1b95294052b6e8136d0f0f2d4b30e6eb..f91296008c859d2d7b57a02bf1ccfa993a8e3af3:/examples/java/reservationSurfPlugin/Sender.java diff --git a/examples/java/reservationSurfPlugin/Sender.java b/examples/java/reservationSurfPlugin/Sender.java index 5f6ca385a0..7e4020c7bc 100644 --- a/examples/java/reservationSurfPlugin/Sender.java +++ b/examples/java/reservationSurfPlugin/Sender.java @@ -34,14 +34,14 @@ public class Sender extends Process { curTime = Msg.getClock(); Msg.info("Send duration: " + (curTime - oldTime)); - TestPlugin.tp.updateBandwidthRoute("Jacquelin", "Boivin", 10E2); + TestPlugin.tp.updateBandwidthRoute("Tremblay", "Ginette", 10E2); oldTime = curTime; task = new Task("no name",computeDuration,commSizeLat); task.send(receiverName); curTime = Msg.getClock(); Msg.info("Send duration with update bandwidth: " + (curTime - oldTime)); - TestPlugin.tp.limitBandwidthActions("Jacquelin", "Boivin", 10E1); + TestPlugin.tp.limitBandwidthActions("Tremblay", "Ginette", 10E1); oldTime = curTime; task = new Task("no name",computeDuration,commSizeLat); task.send(receiverName);