X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8e67b024cf0592ddef06e37870b36d4a4dfe058b..281f8c29e177852dcb1591fc31e363e1176857c8:/src/bindings/java/org/simgrid/msg/Task.java diff --git a/src/bindings/java/org/simgrid/msg/Task.java b/src/bindings/java/org/simgrid/msg/Task.java index 1b2e0cdac1..11784df78d 100644 --- a/src/bindings/java/org/simgrid/msg/Task.java +++ b/src/bindings/java/org/simgrid/msg/Task.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2012 The SimGrid Team. + * Copyright (c) 2006-2013. The SimGrid Team. * All right reserved. * * This program is free software; you can redistribute @@ -168,6 +168,11 @@ public class Task { * @throws TaskCancelledException */ public native void execute() throws HostFailureException,TaskCancelledException; + /** + * Bound a computation to a certain load + * + */ + public native void setBound(double load); /** * Cancels a task. * @@ -248,9 +253,7 @@ public class Task { * @throws HostFailureException * @throws TimeoutException */ - public void sendBounded(String alias, double timeout, double maxrate) throws TransferFailureException, HostFailureException, TimeoutException { - sendBounded(alias,timeout,maxrate); - } + public native void sendBounded(String alias, double timeout, double maxrate) throws TransferFailureException, HostFailureException, TimeoutException; /** @@ -308,6 +311,55 @@ public class Task { * @param host */ public native static Task receive(String mailbox, double timeout, Host host) throws TransferFailureException, HostFailureException, TimeoutException; + + /** + * Starts listening for receiving a task from an asynchronous communication with a capped rate + * @param mailbox + */ + public static native Comm irecvBounded(String mailbox, double rate); + /** + * Retrieves next task from the mailbox identified by the specified name with a capped rate + * + * @param mailbox + */ + + public static Task receiveBounded(String mailbox, double rate) throws TransferFailureException, HostFailureException, TimeoutException { + return receiveBounded(mailbox, -1.0, null, rate); + } + + /** + * Retrieves next task on the mailbox identified by the specified name (wait at most \a timeout seconds) with a capped rate + * + * @param mailbox + * @param timeout + */ + public static Task receiveBounded(String mailbox, double timeout, double rate) throws TransferFailureException, HostFailureException, TimeoutException { + return receiveBounded(mailbox, timeout, null, rate); + } + + /** + * Retrieves next task sent by a given host on the mailbox identified by the specified alias with a capped rate + * + * @param mailbox + * @param host + */ + + public static Task receiveBounded(String mailbox, Host host, double rate) throws TransferFailureException, HostFailureException, TimeoutException { + return receiveBounded(mailbox, -1.0, host, rate); + } + + /** + * Retrieves next task sent by a given host on the mailbox identified by the specified alias (wait at most \a timeout seconds) + * with a capped rate + * + * @param mailbox + * @param timeout + * @param host + */ + public native static Task receiveBounded(String mailbox, double timeout, Host host, double rate) throws TransferFailureException, HostFailureException, TimeoutException; + + + /** * Tests whether there is a pending communication on the mailbox identified by the specified alias, and who sent it */