comparison src/alice/datasegment/Command.java @ 39:3155337e754e

add logger
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Fri, 27 Jan 2012 16:57:26 +0900
parents 20c67f673224
children 20616fe4d28a
comparison
equal deleted inserted replaced
38:7e99ae6e4c7d 39:3155337e754e
27 this.replyQueue = replyQueue; 27 this.replyQueue = replyQueue;
28 this.cs = cs; 28 this.cs = cs;
29 this.reverseKey = reverseKey; 29 this.reverseKey = reverseKey;
30 } 30 }
31 31
32 public String getCommandString() {
33 String csName = "null";
34 if (cs != null) {
35 csName = cs.toString();
36 }
37 return this.type + " \"" + key + "\" " + val + " index=" + index + " cs=" + csName;
38 }
39
32 } 40 }