First version of skeleton-stub communication using queue and 2 sockets (one send...
[iot2.git] / iotjava / iotrmi / Java / basics / TestClass.java
index 1bfe8e24cb2045decb77fa21c3b19057567c99ed..f9666fe0f8a0668f658c0472a7ef6af139aa7f59 100644 (file)
@@ -33,13 +33,29 @@ public class TestClass implements TestClassInterface {
                cblist = new ArrayList<CallBackInterfaceWithCallBack>();
        }
 
+       
+       public int callBack() {
+               
+               int sum = 0;
+               System.out.println("Callback called! cblist: " + cblist.size());
+               for (CallBackInterfaceWithCallBack cb : cblist) {
+                       sum = sum + cb.printInt();
+                       //cb.needCallback(this);
+                       TestClass tci = new TestClass();
+                       cb.needCallback(this);
+                       cb.needCallback(tci);
+                       System.out.println("\n\nInside the loop! Sum is now: " + sum + "\n\n");
+               }
+               System.out.println("Executed callback of callback! Returning value: " + sum + "\n\n");
+               return sum;
+       }
 
        // Callback
        //public void registerCallback(CallBackInterface _cb) {
        public void registerCallback(CallBackInterfaceWithCallBack _cb) {
 
                cblist.add(_cb);
-               System.out.println("Registering callback object!");
+               System.out.println("Registering callback object! Items: " + cblist.size());
        }
 
 
@@ -73,16 +89,6 @@ public class TestClass implements TestClassInterface {
        }
 
 
-       public int callBack() {
-
-               int sum = 0;
-               for (CallBackInterfaceWithCallBack cb : cblist) {
-                       sum = sum + cb.printInt();
-               }
-               return sum;
-       }
-
-
        // Single variables
        public byte getByte(byte in) {
 
@@ -518,4 +524,10 @@ public class TestClass implements TestClassInterface {
                intA = newA;
                return intA;
        }
+
+       public static void main(String[] args) {
+
+               TestClass tc = new TestClass();
+               System.out.println("Get short: " + tc.getShort((short) 1234));
+       }
 }