view src/alice/datasegment/Reply.java @ 7:352eb19d837d

implements reply of LocalDataSegment
author one
date Thu, 12 Jan 2012 13:48:34 +0900
parents src/alice/codesegment/Reply.java@c78a1cc2cd8f
children
line wrap: on
line source

package alice.datasegment;

import org.msgpack.type.Value;

public class Reply {
	int seq;
	int index;
	Value val;
	
	public Reply(int seq, int index, Value val) {
		this.seq = seq;
		this.index = index;
		this.val = val;
	}
}