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/10 23:45:45 UTC

svn commit: r889450 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/MessageConsumer.cs

Author: tabish
Date: Thu Dec 10 22:45:45 2009
New Revision: 889450

URL: http://svn.apache.org/viewvc?rev=889450&view=rev
Log:
http://issues.apache.org/activemq/browse/AMQNET-219

Remove old MaxRedeliveries value.

Modified:
    activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/MessageConsumer.cs

Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/MessageConsumer.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/MessageConsumer.cs?rev=889450&r1=889449&r2=889450&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/MessageConsumer.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.2.x/src/main/csharp/MessageConsumer.cs Thu Dec 10 22:45:45 2009
@@ -48,7 +48,6 @@
 		private Atomic<bool> started = new Atomic<bool>();
 		private Atomic<bool> deliveringAcks = new Atomic<bool>();
 
-		private int maximumRedeliveryCount = 10;
 		private int redeliveryTimeout = 500;
 		protected bool disposed = false;
 		private long lastDeliveredSequenceId = 0;
@@ -91,12 +90,6 @@
 			get { return info.ConsumerId; }
 		}
 
-		public int MaximumRedeliveryCount
-		{
-			get { return maximumRedeliveryCount; }
-			set { maximumRedeliveryCount = value; }
-		}
-
 		public int RedeliveryTimeout
 		{
 			get { return redeliveryTimeout; }