diff src/main/java/jp/ac/u_ryukyu/alicevnc/ReceiveUpdateRectangle.java @ 63:9662e582ffad

work AliceVNC (don't work ServerChangeRequest)
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Tue, 17 Nov 2015 18:17:03 +0900
parents 8f60ba0d29ae
children 66f95be0daab
line wrap: on
line diff
--- a/src/main/java/jp/ac/u_ryukyu/alicevnc/ReceiveUpdateRectangle.java	Tue Nov 17 01:01:49 2015 +0900
+++ b/src/main/java/jp/ac/u_ryukyu/alicevnc/ReceiveUpdateRectangle.java	Tue Nov 17 18:17:03 2015 +0900
@@ -37,13 +37,13 @@
         ArrayList<String> clist = info3.asClass(ArrayList.class);
         // for measurement
         if (info2.getReceiveData().getSetTime()) {
-            ods.flip("compressedparent", "measurement", info2);
+            ods.flip("parent", "measurement", info2);
         }
         for (String node : clist){
             if (!info1.from.equals(node)) {
                 // not need send data comes from
                 // Data Segment from other node is already serialized
-                ods.flip("compressed" + node, "updateRectangle", info1); //TODO need timeout counter
+                ods.flip(node, "updateRectangle", info1); //TODO need timeout counter
                 //ods.setCompressFlag(true);
 
                 // for measurement
@@ -51,7 +51,7 @@
                 if (!r.getSetTime()) {
                     r.setTimes(System.currentTimeMillis(), true, 0);
                 }
-                ods.flip("compressed" + node, "pixelData",  info2);
+                ods.flip(node, "pixelData",  info2);
             }
         }