Mercurial > hg > Database > Alice
comparison 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 |
comparison
equal
deleted
inserted
replaced
27:f54dcbebde3a | 28:98ab26e09a98 |
---|---|
13 public Value val; | 13 public Value val; |
14 public int index; | 14 public int index; |
15 public int seq; | 15 public int seq; |
16 public BlockingQueue<Command> replyQueue; | 16 public BlockingQueue<Command> replyQueue; |
17 public CodeSegment cs; | 17 public CodeSegment cs; |
18 public String reverseKey; | |
18 | 19 |
19 public Command(CommandType cmdType, DataSegmentReceiver receiver, String key, Value val, int index, int seq, BlockingQueue<Command> replyQueue, CodeSegment cs) { | 20 public Command(CommandType cmdType, DataSegmentReceiver receiver, String key, Value val, int index, int seq, BlockingQueue<Command> replyQueue, CodeSegment cs, String reverseKey) { |
20 this.type = cmdType; | 21 this.type = cmdType; |
21 this.receiver = receiver; | 22 this.receiver = receiver; |
22 this.key = key; | 23 this.key = key; |
23 this.val = val; | 24 this.val = val; |
24 this.index = index; | 25 this.index = index; |
25 this.seq = seq; | 26 this.seq = seq; |
26 this.replyQueue = replyQueue; | 27 this.replyQueue = replyQueue; |
27 this.cs = cs; | 28 this.cs = cs; |
29 this.reverseKey = reverseKey; | |
28 } | 30 } |
29 | 31 |
30 } | 32 } |