view src/main/java/alice/datasegment/DataSegmentValue.java @ 393:38021fceabef draft multicast

test commit
author tatsuki
date Tue, 17 Jun 2014 17:39:47 +0900
parents 8f71c3e6f11d
children
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;
	}
	
}