Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 78281 invoked from network); 17 Dec 2009 16:50:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 17 Dec 2009 16:50:33 -0000 Received: (qmail 91074 invoked by uid 500); 17 Dec 2009 16:50:33 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 91016 invoked by uid 500); 17 Dec 2009 16:50:33 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 91007 invoked by uid 99); 17 Dec 2009 16:50:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Dec 2009 16:50:33 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Dec 2009 16:50:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A04DC2388A6B; Thu, 17 Dec 2009 16:50:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r891799 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Commands/MessageId.cs Date: Thu, 17 Dec 2009 16:50:11 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091217165011.A04DC2388A6B@eris.apache.org> 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;