summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org>2014-02-06 11:23:15 +0000
committerRobert Godfrey <rgodfrey@apache.org>2014-02-06 11:23:15 +0000
commit8ef4f8c2a6553c39512d8939eb516d275535a949 (patch)
tree8dc4e35a7eea43dc505278e2e935e80e0039d938
parentef1f656a4330a42d907b75eae0652693490e3363 (diff)
downloadqpid-python-8ef4f8c2a6553c39512d8939eb516d275535a949.tar.gz
removing unused statistics in SimpleAMQQueue
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/java-broker-amqp-1-0-management@1565170 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/broker-core/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java30
1 files changed, 1 insertions, 29 deletions
diff --git a/java/broker-core/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java b/java/broker-core/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java
index 44272689fb..1db0c57a62 100644
--- a/java/broker-core/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java
+++ b/java/broker-core/src/main/java/org/apache/qpid/server/queue/SimpleAMQQueue.java
@@ -118,9 +118,7 @@ public class SimpleAMQQueue implements AMQQueue<QueueConsumer>,
private final AtomicLong _persistentMessageDequeueSize = new AtomicLong();
private final AtomicLong _persistentMessageEnqueueCount = new AtomicLong();
private final AtomicLong _persistentMessageDequeueCount = new AtomicLong();
- private final AtomicInteger _consumerCountHigh = new AtomicInteger(0);
private final AtomicLong _unackedMsgCount = new AtomicLong(0);
- private final AtomicLong _unackedMsgCountHigh = new AtomicLong(0);
private final AtomicLong _unackedMsgBytes = new AtomicLong();
private final AtomicInteger _bindingCountHigh = new AtomicInteger();
@@ -452,13 +450,6 @@ public class SimpleAMQQueue implements AMQQueue<QueueConsumer>,
_consumerList.add(consumer);
- //Increment consumerCountHigh if necessary. (un)registerConsumer are both
- //synchronized methods so we don't need additional synchronization here
- if(_consumerCountHigh.get() < getConsumerCount())
- {
- _consumerCountHigh.incrementAndGet();
- }
-
if (isDeleted())
{
consumer.queueDeleted();
@@ -945,11 +936,6 @@ public class SimpleAMQQueue implements AMQQueue<QueueConsumer>,
return _consumerList.size();
}
- public int getConsumerCountHigh()
- {
- return _consumerCountHigh.get();
- }
-
public int getActiveConsumerCount()
{
return _activeSubscriberCount.get();
@@ -2086,11 +2072,6 @@ public class SimpleAMQQueue implements AMQQueue<QueueConsumer>,
return getName();
}
- public long getUnackedMessageCountHigh()
- {
- return _unackedMsgCountHigh.get();
- }
-
public long getUnackedMessageCount()
{
return _unackedMsgCount.get();
@@ -2109,17 +2090,8 @@ public class SimpleAMQQueue implements AMQQueue<QueueConsumer>,
private void incrementUnackedMsgCount(QueueEntry entry)
{
- long unackedMsgCount = _unackedMsgCount.incrementAndGet();
+ _unackedMsgCount.incrementAndGet();
_unackedMsgBytes.addAndGet(entry.getSize());
-
- long unackedMsgCountHigh;
- while(unackedMsgCount > (unackedMsgCountHigh = _unackedMsgCountHigh.get()))
- {
- if(_unackedMsgCountHigh.compareAndSet(unackedMsgCountHigh, unackedMsgCount))
- {
- break;
- }
- }
}
public LogActor getLogActor()