blob: 7e69a957e5101f7092c682d60be857a541933c6d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.uima.aae.spi.transport.vm;
import java.util.concurrent.LinkedBlockingQueue;
/**
* This is a JMX wrapper around the {@link LinkedBlockingQueue}. It exposes the following queue
* statistics:
* <ul>
* <li>size - the number of items on the queue</li>
* <li>consumerCount - number of concurrent consuming threads taking items from this queue.</li>
* <li>dequeueCount - total number of items consumed so far</li>
* </ul>
*
*/
public class UimaVmQueue extends LinkedBlockingQueue<Runnable> implements UimaVmQueueMBean {
private static final long serialVersionUID = 1L;
private int consumerCount = 0;
private long dequeueCount = 0;
// This is an unbounded queue
public UimaVmQueue() {
}
/**
* Returns the current number of items in the queue.
*/
public int getQueueSize() {
return super.size();
}
/**
* Returns total number of items dequeued so far
*/
public long getDequeueCount() {
return dequeueCount;
}
/**
* Override of the method in the super class to enable counting of items taken (dequeued) off the
* queue.
*/
public Runnable take() throws InterruptedException {
Runnable work = super.take();
if (work != null) {
dequeueCount++;
}
return work;
}
/**
* Returns total number of concurrent threads consuming work from this queue.
*/
public int getConsumerCount() {
return consumerCount;
}
/**
* Sets the number of concurrent threads consuming work from this queue
*
* @param aConsumerCount
* - number of consuming threads
*/
public void setConsumerCount(int aConsumerCount) {
consumerCount = aConsumerCount;
}
/**
* Resets both the queue size and dequeue count to zero
*/
public void reset() {
super.clear();
dequeueCount = 0;
}
}