Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Export setAsyncMailbox to Java world
authorLionel <eyraud@etincel.(none)>
Thu, 6 Jun 2013 13:05:54 +0000 (15:05 +0200)
committerLionel <eyraud@etincel.(none)>
Thu, 6 Jun 2013 13:20:31 +0000 (15:20 +0200)
src/bindings/java/jmsg_host.c
src/bindings/java/org/simgrid/msg/Host.java

index 8cd7da1..9b47427 100644 (file)
@@ -278,3 +278,12 @@ Java_org_simgrid_msg_Host_all(JNIEnv * env, jclass cls_arg)
   xbt_dynar_free(&table);
   return jtable;
 }
+
+JNIEXPORT void JNICALL 
+Java_org_simgrid_msg_Host_setAsyncMailbox(JNIEnv * env, jclass cls_arg, jobject jname){
+
+  const char *name = (*env)->GetStringUTFChars(env, jname, 0);
+  MSG_mailbox_set_async(name);
+  (*env)->ReleaseStringUTFChars(env, jname, name);
+
+}
index c00dd54..11605f9 100644 (file)
@@ -101,6 +101,20 @@ public class Host {
         */ 
        public native static Host[] all();
 
+    /** 
+     * This static method sets a mailbox to receive in asynchronous mode.
+     * 
+     * All messages sent to this mailbox will be transferred to 
+     * the receiver without waiting for the receive call. 
+     * The receive call will still be necessary to use the received data.
+     * If there is a need to receive some messages asynchronously, and some not, 
+     * two different mailboxes should be used.
+     *
+     * @param alias The name of the mailbox 
+     */
+    public static native void setAsyncMailbox(String mailboxName);
+
+
        /**
         * This method returns the name of a host.
         * @return                      The name of the host.