view src/main/java/alice/datasegment/DataSegmentValue.java @ 451:ad1547756565 dispose

add status flag
author sugi
date Tue, 28 Oct 2014 11:07:23 +0900
parents 2f2623484b77
children f68d103498e0
line wrap: on
line source

package alice.datasegment;

public class DataSegmentValue {

    public int index;
    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) {
        this.index = index;
        this.val = val;
        this.from = reverseKey;
        this.obj = obj;
    }
    
}