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 2010/01/14 20:22:51 UTC

svn commit: r899363 - /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerInfo.cs

Author: tabish
Date: Thu Jan 14 19:22:46 2010
New Revision: 899363

URL: http://svn.apache.org/viewvc?rev=899363&view=rev
Log:
Adds a Transformation property to the ConsumerInfo for use in configuring the type of Transforamtion that the broker uses to convert MapMessage's or Object's to be sent to stomp client's

Modified:
    activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerInfo.cs

Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerInfo.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerInfo.cs?rev=899363&r1=899362&r2=899363&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerInfo.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerInfo.cs Thu Jan 14 19:22:46 2010
@@ -38,6 +38,7 @@
         bool exclusive;
         bool retroactive;
         byte priority;
+        string transformation;
 
         ///
         /// <summery>
@@ -71,6 +72,7 @@
                 "Exclusive=" + Exclusive + ", " +
                 "Retroactive=" + Retroactive + ", " +
                 "Priority=" + Priority + ", " +
+                "Transformation" + Transformation + 
                 "]";
         }
 
@@ -146,6 +148,12 @@
             set { this.priority = value; }
         }
 
+        public string Transformation
+        {
+            get { return this.transformation; }
+            set { this.transformation = value; }
+        }
+
         ///
         /// <summery>
         ///  Return an answer of true to the isConsumerInfo() query.