Author: tabish
Date: Thu Dec 17 16:49:46 2009
New Revision: 891798
URL: http://svn.apache.org/viewvc?rev=891798&view=rev
Log:
Includes the broker sequence Id into the ToString output.
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ.Openwire.Generator/src/main/java/org/apache/activemq/nms/openwire/tool/commands/MessageIdGenerator.java
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ.Openwire.Generator/src/main/java/org/apache/activemq/nms/openwire/tool/commands/MessageIdGenerator.java
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ.Openwire.Generator/src/main/java/org/apache/activemq/nms/openwire/tool/commands/MessageIdGenerator.java?rev=891798&r1=891797&r2=891798&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.ActiveMQ.Openwire.Generator/src/main/java/org/apache/activemq/nms/openwire/tool/commands/MessageIdGenerator.java
(original)
+++
activemq/activemq-dotnet/Apache.NMS.ActiveMQ.Openwire.Generator/src/main/java/org/apache/activemq/nms/openwire/tool/commands/MessageIdGenerator.java
Thu Dec 17 16:49:46 2009
@@ -53,7 +53,7 @@
out.println(" if(key == null) ");
out.println(" {");
- out.println(" key = producerId.ToString() + \":\" +
producerSequenceId;");
+ out.println(" key = producerId.ToString() + \":\" +
producerSequenceId + \":\" + brokerSequenceId;");
out.println(" }");
out.println(" ");
out.println(" return key;");