view src/alice/datasegment/Command.java @ 6:c78a1cc2cd8f

implements Reply
author one
date Thu, 12 Jan 2012 13:19:04 +0900
parents 91057e15065f
children 352eb19d837d
line wrap: on
line source

package alice.datasegment;

import org.msgpack.type.Value;

public class Command {
	public CommandType cmdType;
	public Value val;
	public int index;
	public int seq;
	public DataSegmentManager manager;

	public Command(CommandType cmdType, Value val, int index, int seq, DataSegmentManager manager) {
		this.cmdType = cmdType;
		this.val = val;
		this.index = index;
		this.seq = seq;
		this.manager = manager;
	}
	
}