Author: tabish
Date: Thu Dec 17 16:50:11 2009
New Revision: 891799

URL: http://svn.apache.org/viewvc?rev=891799&view=rev
Log:
Includes the broker sequence Id into the ToString output.

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

Modified: 
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Commands/MessageId.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Commands/MessageId.cs?rev=891799&r1=891798&r2=891799&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Commands/MessageId.cs
 (original)
+++ 
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Commands/MessageId.cs
 Thu Dec 17 16:50:11 2009
@@ -75,7 +75,7 @@
         {
             if(key == null) 
             {
-                key = producerId.ToString() + ":" + producerSequenceId;
+                key = producerId.ToString() + ":" + producerSequenceId + ":" + 
brokerSequenceId;
             }
             
             return key;


Reply via email to