changeset 451:ad1547756565 dispose

add status flag
author sugi
date Tue, 28 Oct 2014 11:07:23 +0900
parents 5b14d0b60201
children f68d103498e0
files src/main/java/alice/datasegment/DataSegmentValue.java
diffstat 1 files changed, 4 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/java/alice/datasegment/DataSegmentValue.java	Tue Oct 28 10:54:29 2014 +0900
+++ b/src/main/java/alice/datasegment/DataSegmentValue.java	Tue Oct 28 11:07:23 2014 +0900
@@ -6,18 +6,14 @@
     public byte[] val;
     public String from;
     public Object obj;
+    public boolean compressed;
+    public boolean serialized;
 
-    public DataSegmentValue(int index, byte[] val, Object obj,String reverseKey) {
+    public DataSegmentValue(int index, byte[] val, Object obj, String reverseKey) {
         this.index = index;
         this.val = val;
         this.from = reverseKey;
         this.obj = obj;
     }
-
-    public DataSegmentValue(int index, byte[] val,String reverseKey) {
-        this.index = index;
-        this.val = val;
-        this.from = reverseKey;
-    }
-
+    
 }