Mercurial > hg > Database > Alice
view src/main/java/alice/datasegment/DataSegmentValue.java @ 350:388e7d4b0624
heart beat may finish.
author | sugi |
---|---|
date | Tue, 22 Apr 2014 04:21:22 +0900 |
parents | 8f71c3e6f11d |
children | aefbe41fcf12 |
line wrap: on
line source
package alice.datasegment; import org.msgpack.type.Value; public class DataSegmentValue { public int index; public Value val; public String from; public Object obj; public DataSegmentValue(int index, Value val, Object obj,String reverseKey) { this.index = index; this.val = val; this.from = reverseKey; this.obj = obj; } public DataSegmentValue(int index, Value val,String reverseKey) { this.index = index; this.val = val; this.from = reverseKey; } }