Package voldemort.store.stats

Examples of voldemort.store.stats.ClientSocketStatsJmx


                                                                        TimeUnit.MILLISECONDS);
        this.jmxEnabled = jmxEnabled;
        this.identifierString = identifierString;
        if(this.jmxEnabled) {
            stats = new ClientSocketStats(identifierString);
            JmxUtils.registerMbean(new ClientSocketStatsJmx(stats),
                                   JmxUtils.createObjectName(JmxUtils.getPackageName(this.getClass()),
                                                             "aggregated" + identifierString));
        } else {
            stats = null;
        }
View Full Code Here

TOP

Related Classes of voldemort.store.stats.ClientSocketStatsJmx

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.