diff src/alice/datasegment/Command.java @ 195:b4ca7f75e6b2 working

add put , Update API (no convert to value)
author e095732
date Tue, 12 Mar 2013 00:49:19 +0900
parents 60051454e443
children f151dea22b2c
line wrap: on
line diff
--- a/src/alice/datasegment/Command.java	Fri Mar 08 15:56:48 2013 +0900
+++ b/src/alice/datasegment/Command.java	Tue Mar 12 00:49:19 2013 +0900
@@ -17,6 +17,13 @@
 	public CodeSegment cs;
 	public String reverseKey;
 	public Object obj;
+	public DataSegmentValue dsv;
+	
+	public Command(CommandType cmdType, int seq, DataSegmentValue dsv){
+		this.type = cmdType;
+		this.seq = seq;
+		this.dsv = dsv;
+	}
 	
 	public Command(CommandType cmdType, Receiver receiver, String key, Value val, int index, int seq, BlockingQueue<Command> replyQueue, CodeSegment cs, String reverseKey) {
 		this.type = cmdType;