Author: jgomes
Date: Thu Sep 4 11:20:43 2008
New Revision: 692182
URL: http://svn.apache.org/viewvc?rev=692182&view=rev
Log:
Add setter to NMSPriority and NMSPersistent.
Modified:
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IMessage.cs
Modified: activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IMessage.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IMessage.cs?rev=692182&r1=692181&r2=692182&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IMessage.cs
(original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IMessage.cs Thu
Sep 4 11:20:43 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.