Author: tabish
Date: Thu Dec 10 22:43:35 2009
New Revision: 889448
URL: http://svn.apache.org/viewvc?rev=889448&view=rev
Log:
http://issues.apache.org/activemq/browse/AMQNET-219
Remove old MaxRedeliveries value.
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs?rev=889448&r1=889447&r2=889448&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs
Thu Dec 10 22:43:35 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; }