You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/10/19 16:59:17 UTC

svn commit: r465650 - in /incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ: Commands/Message.cs OpenWire/V2/MessageMarshaller.cs

Author: chirino
Date: Thu Oct 19 07:59:16 2006
New Revision: 465650

URL: http://svn.apache.org/viewvc?view=rev&rev=465650
Log:
Regenerated openwire marshallers

Modified:
    incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/Commands/Message.cs
    incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/OpenWire/V2/MessageMarshaller.cs

Modified: incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/Commands/Message.cs
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/Commands/Message.cs?view=diff&rev=465650&r1=465649&r2=465650
==============================================================================
--- incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/Commands/Message.cs (original)
+++ incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/Commands/Message.cs Thu Oct 19 07:59:16 2006
@@ -60,6 +60,7 @@
         long arrival;
         string userID;
         bool recievedByDFBridge;
+        bool droppable;
 
 		public override string ToString() {
             return GetType().Name + "["
@@ -88,6 +89,7 @@
                 + " Arrival=" + Arrival
                 + " UserID=" + UserID
                 + " RecievedByDFBridge=" + RecievedByDFBridge
+                + " Droppable=" + Droppable
                 + " ]";
 
 		}
@@ -247,6 +249,12 @@
         {
             get { return recievedByDFBridge; }
             set { this.recievedByDFBridge = value; }            
+        }
+
+        public bool Droppable
+        {
+            get { return droppable; }
+            set { this.droppable = value; }            
         }
 
     }

Modified: incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/OpenWire/V2/MessageMarshaller.cs
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/OpenWire/V2/MessageMarshaller.cs?view=diff&rev=465650&r1=465649&r2=465650
==============================================================================
--- incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/OpenWire/V2/MessageMarshaller.cs (original)
+++ incubator/activemq/activemq-dotnet/trunk/src/main/csharp/ActiveMQ/OpenWire/V2/MessageMarshaller.cs Thu Oct 19 07:59:16 2006
@@ -81,6 +81,7 @@
         info.Arrival = TightUnmarshalLong(wireFormat, dataIn, bs);
         info.UserID = TightUnmarshalString(dataIn, bs);
         info.RecievedByDFBridge = bs.ReadBoolean();
+        info.Droppable = bs.ReadBoolean();
 
     }
 
@@ -115,6 +116,7 @@
         rc += TightMarshalLong1(wireFormat, info.Arrival, bs);
         rc += TightMarshalString1(info.UserID, bs);
         bs.WriteBoolean(info.RecievedByDFBridge);
+        bs.WriteBoolean(info.Droppable);
 
         return rc + 9;
     }
@@ -157,6 +159,7 @@
         TightMarshalLong2(wireFormat, info.Arrival, dataOut, bs);
         TightMarshalString2(info.UserID, dataOut, bs);
         bs.ReadBoolean();
+        bs.ReadBoolean();
 
     }
 
@@ -204,6 +207,7 @@
         info.Arrival = LooseUnmarshalLong(wireFormat, dataIn);
         info.UserID = LooseUnmarshalString(dataIn);
         info.RecievedByDFBridge = dataIn.ReadBoolean();
+        info.Droppable = dataIn.ReadBoolean();
 
     }
 
@@ -248,6 +252,7 @@
         LooseMarshalLong(wireFormat, info.Arrival, dataOut);
         LooseMarshalString(info.UserID, dataOut);
         dataOut.Write(info.RecievedByDFBridge);
+        dataOut.Write(info.Droppable);
 
     }
   }