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/12/17 17:50:11 UTC

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

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;