X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9104957deccc59e0e804215d5db498fabfd40d29..5ed37babb2fa9097abe82df299c0aa259ed84d5a:/examples/deprecated/java/async/waitall/Main.java diff --git a/examples/deprecated/java/async/waitall/Main.java b/examples/deprecated/java/async/waitall/Main.java index d183627a89..801327c381 100644 --- a/examples/deprecated/java/async/waitall/Main.java +++ b/examples/deprecated/java/async/waitall/Main.java @@ -1,18 +1,18 @@ -/* Copyright (c) 2006-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2023. 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 async.waitall; -/** This example demonstrates the use of the asynchrounous communications - * +/** This example demonstrates the use of the asynchronous communications + * * Task.isend() and Task.irecv() are used to start the communications in non-blocking mode. - * - * The sends are then blocked onto with Comm.waitCompletion(), that locks until the given + * + * The sends are then blocked onto with Comm.waitCompletion(), that locks until the given * communication terminates. - * - * The receives are packed into an array, and the sender blocks until all of them terminate + * + * The receives are packed into an array, and the sender blocks until all of them terminate * with Comm.waitAll(). */