You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2009/10/02 15:41:44 UTC

svn commit: r821019 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Commands/Message.cs

Author: tabish
Date: Fri Oct  2 13:41:43 2009
New Revision: 821019

URL: http://svn.apache.org/viewvc?rev=821019&view=rev
Log:
https://issues.apache.org/activemq/browse/AMQNET-162

Regenerated class with virtual OnSend and Size methods.

Modified:
    activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Commands/Message.cs

Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Commands/Message.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Commands/Message.cs?rev=821019&r1=821018&r2=821019&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Commands/Message.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Commands/Message.cs Fri Oct  2 13:41:43 2009
@@ -143,7 +143,7 @@
                 "]";
         }
 
-        public int Size()
+        public virtual int Size()
         {
             int size = DEFAULT_MINIMUM_MESSAGE_SIZE;
 
@@ -159,7 +159,7 @@
             return size;
         }
 
-        public void OnSend()
+        public virtual void OnSend()
         {
             this.ReadOnlyProperties = true;
             this.ReadOnlyBody = true;