Author: mrogers
Date: 2006-09-14 14:13:52 +0000 (Thu, 14 Sep 2006)
New Revision: 10470
Added:
trunk/apps/load-balancing-sims/phase6/messages/InsertReply.java
Log:
CHK inserts, sorry about the large number of commits, I accidentally added
classfiles to the repository and I'm trying to fix it
Added: trunk/apps/load-balancing-sims/phase6/messages/InsertReply.java
===================================================================
--- trunk/apps/load-balancing-sims/phase6/messages/InsertReply.java
2006-09-14 14:13:29 UTC (rev 10469)
+++ trunk/apps/load-balancing-sims/phase6/messages/InsertReply.java
2006-09-14 14:13:52 UTC (rev 10470)
@@ -0,0 +1,15 @@
+package messages;
+
+public class InsertReply extends Message
+{
+ public InsertReply (int id)
+ {
+ this.id = id;
+ size = Message.HEADER_SIZE;
+ }
+
+ public String toString()
+ {
+ return new String ("insert reply (" + id + ")");
+ }
+}