Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove Java bindings. They are not updated since maybe 10 years
[simgrid.git] / src / bindings / java / org / simgrid / msg / Comm.java
diff --git a/src/bindings/java/org/simgrid/msg/Comm.java b/src/bindings/java/org/simgrid/msg/Comm.java
deleted file mode 100644 (file)
index 86c33cb..0000000
+++ /dev/null
@@ -1,86 +0,0 @@
-/* Copyright (c) 2012-2014. 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 org.simgrid.msg;
-
-/**
- * Communication action, representing an ongoing communication
- * between processes.
- */
-public class Comm {
-       /**
-        * Indicates if the communication is a receiving communication
-        */
-       protected boolean receiving;
-       /**
-        * Indicates if the communication is finished
-        */
-       protected boolean finished = false;
-       /**
-        * Represents the bind between the java comm and the
-        * native C comm. You must never access it, since it is 
-        * automatically set.
-        */
-       private long bind = 0;
-       /**
-        * Represents the bind for the task object pointer. Don't touch it.
-        */
-       private long taskBind = 0;
-       /**
-        * Task associated with the comm. Beware, it can be null 
-        */
-       protected Task task = null;
-       /**
-        * Protected constructor, used by Comm factories
-        * in Task.
-        */
-       protected Comm() {
-
-       }
-       /** Destroy the C communication object, when the GC reclaims the java part. */
-       @Override
-       protected void finalize() {
-               try {
-                       nativeFinalize();
-               } catch (Throwable e) {
-                       e.printStackTrace();
-               }
-       }
-       protected native void nativeFinalize();
-       /**
-        * Returns if the communication is finished or not.
-        * If the communication has finished and there was an error,
-        * raise an exception.
-        */
-       public native boolean test() throws TransferFailureException, HostFailureException, TimeoutException ;
-       /** Wait infinitely for the completion of the communication (infinite timeout) */
-       public void waitCompletion() throws TransferFailureException, HostFailureException, TimeoutException {
-               waitCompletion(-1);
-       }
-       /**
-        * Wait for the completion of the communication.
-        * Throws an exception if there were an error in the communication.
-        * @param timeout Time before giving up (infinite time if negative)
-        */
-       public native void waitCompletion(double timeout) throws TransferFailureException, HostFailureException, TimeoutException;
-
-       /**
-        * Returns the task associated with the communication.
-        * if the communication isn't finished yet, will return null.
-        */
-       public Task getTask() {
-               return task;
-       }
-
-       /**
-        * Class initializer, to initialize various JNI stuff
-        */
-       public static native void nativeInit();
-       static {
-               org.simgrid.NativeLib.nativeInit();
-               nativeInit();
-       }       
-}