Author: mrogers
Date: 2006-09-14 14:13:29 +0000 (Thu, 14 Sep 2006)
New Revision: 10469
Added:
trunk/apps/load-balancing-sims/phase6/messages/DataInsert.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/DataInsert.java
===================================================================
--- trunk/apps/load-balancing-sims/phase6/messages/DataInsert.java
2006-09-14 14:13:25 UTC (rev 10468)
+++ trunk/apps/load-balancing-sims/phase6/messages/DataInsert.java
2006-09-14 14:13:29 UTC (rev 10469)
@@ -0,0 +1,15 @@
+package messages;
+
+public class DataInsert extends Message
+{
+ public DataInsert (int id)
+ {
+ this.id = id;
+ size = Message.HEADER_SIZE;
+ }
+
+ public String toString()
+ {
+ return new String ("data insert (" + id + ")");
+ }
+}