001/**
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.camel.management.mbean;
018
019import org.apache.camel.CamelContext;
020import org.apache.camel.api.management.ManagedResource;
021import org.apache.camel.api.management.mbean.ManagedConsumerCacheMBean;
022import org.apache.camel.impl.ConsumerCache;
023
024/**
025 * @version 
026 */
027@ManagedResource(description = "Managed ConsumerCache")
028public class ManagedConsumerCache extends ManagedService implements ManagedConsumerCacheMBean {
029    private final ConsumerCache consumerCache;
030
031    public ManagedConsumerCache(CamelContext context, ConsumerCache consumerCache) {
032        super(context, consumerCache);
033        this.consumerCache = consumerCache;
034    }
035
036    public ConsumerCache getConsumerCache() {
037        return consumerCache;
038    }
039
040    public String getSource() {
041        if (consumerCache.getSource() != null) {
042            return consumerCache.getSource().toString();
043        }
044        return null;
045    }
046
047    public Integer getSize() {
048        return consumerCache.size();
049    }
050
051    public Integer getMaximumCacheSize() {
052        return consumerCache.getCapacity();
053    }
054
055    public Long getHits() {
056        return consumerCache.getHits();
057    }
058
059    public Long getMisses() {
060        return consumerCache.getMisses();
061    }
062
063    public Long getEvicted() {
064        return consumerCache.getEvicted();
065    }
066
067    public void resetStatistics() {
068        consumerCache.resetCacheStatistics();
069    }
070
071    public void purge() {
072        consumerCache.purge();
073    }
074
075}