Package voldemort.store.stats

Examples of voldemort.store.stats.SimpleCounter


        rateLimitedGets = new AtomicLong();
        rateLimitedPuts = new AtomicLong();
        rateLimitedGetAlls = new AtomicLong();
        rateLimitedDeletes = new AtomicLong();

        pctGetQuotaUsed = new SimpleCounter(resetIntervalMs);
        pctPutQuotaUsed = new SimpleCounter(resetIntervalMs);
        pctDeleteQuotaUsed = new SimpleCounter(resetIntervalMs);
        pctGetAllQuotaUsed = new SimpleCounter(resetIntervalMs);

        this.parent = parent;
    }
View Full Code Here

TOP

Related Classes of voldemort.store.stats.SimpleCounter

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.