You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jg...@apache.org on 2008/09/04 20:02:54 UTC

svn commit: r692176 - /activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs

Author: jgomes
Date: Thu Sep  4 11:02:53 2008
New Revision: 692176

URL: http://svn.apache.org/viewvc?rev=692176&view=rev
Log:
Add setter to NMSPriority and NMSPersistent.

Modified:
    activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs

Modified: activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs?rev=692176&r1=692175&r2=692176&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS/tags/1.0.0/src/main/csharp/IMessage.cs Thu Sep  4 11:02:53 2008
@@ -55,14 +55,14 @@
 		string NMSMessageId { get; }
 		
 		/// <summary>
-		/// Whether or not this message is persistent.  This property is set by the IMessageProducer.
+		/// Whether or not this message is persistent.
 		/// </summary>
-		bool NMSPersistent { get; }
+		bool NMSPersistent { get; set; }
 		
 		/// <summary>
-		/// The Priority of this message.  This property is set by the IMessageProducer.
+		/// The Priority of this message.
 		/// </summary>
-		byte NMSPriority { get; }
+		byte NMSPriority { get; set; }
 		
 		/// <summary>
 		/// Returns true if this message has been redelivered to this or another consumer before being acknowledged successfully.