Mercurial > hg > Database > Alice
view src/alice/datasegment/Command.java @ 28:98ab26e09a98
Configuration Manager work and implements reverseKey
author | kazz <kazz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 17 Jan 2012 08:41:34 +0900 |
parents | 72dd27d952b0 |
children | 20c67f673224 |
line wrap: on
line source
package alice.datasegment; import java.util.concurrent.BlockingQueue; import org.msgpack.type.Value; import alice.codesegment.CodeSegment; public class Command { public CommandType type; public String key; public DataSegmentReceiver receiver; public Value val; public int index; public int seq; public BlockingQueue<Command> replyQueue; public CodeSegment cs; public String reverseKey; public Command(CommandType cmdType, DataSegmentReceiver receiver, String key, Value val, int index, int seq, BlockingQueue<Command> replyQueue, CodeSegment cs, String reverseKey) { this.type = cmdType; this.receiver = receiver; this.key = key; this.val = val; this.index = index; this.seq = seq; this.replyQueue = replyQueue; this.cs = cs; this.reverseKey = reverseKey; } }