Package org.apache.synapse.commons.jmx

Examples of org.apache.synapse.commons.jmx.MBeanRegistrar


    private final ConcurrentLinkedQueue<StatisticsRecord> statisticsCollection =
            new ConcurrentLinkedQueue<StatisticsRecord>();

    public StatisticsCollector() {
        MBeanRegistrar registrar = MBeanRegistrar.getInstance();
        synchronized (registrar) {
            registrar.registerMBean(new StatisticsView(this),
                    "StatisticsView", "StatisticsView");
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.synapse.commons.jmx.MBeanRegistrar

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.