Author: tabish
Date: Thu Dec 17 16:51:51 2009
New Revision: 891800
URL: http://svn.apache.org/viewvc?rev=891800&view=rev
Log:
Includes the broker sequence Id into the ToString output.
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/Commands/MessageId.cs
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/Commands/MessageId.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/Commands/MessageId.cs?rev=891800&r1=891799&r2=891800&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/Commands/MessageId.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/Commands/MessageId.cs
Thu Dec 17 16:51:51 2009
@@ -75,7 +75,7 @@
{
if(key == null)
{
- key = producerId.ToString() + ":" + producerSequenceId;
+ key = producerId.ToString() + ":" + producerSequenceId + ":" +
brokerSequenceId;
}
return key;