Package org.apache.camel.util

Examples of org.apache.camel.util.LRUCache.resetStatistics()


     * Resets the cache statistics
     */
    public void resetCacheStatistics() {
        if (consumers instanceof LRUCache) {
            LRUCache cache = (LRUCache) consumers;
            cache.resetStatistics();
        }
    }

    /**
     * Purges this cache
View Full Code Here


     * Resets the cache statistics
     */
    public void resetCacheStatistics() {
        if (producers instanceof LRUCache) {
            LRUCache cache = (LRUCache) producers;
            cache.resetStatistics();
        }
    }

    /**
     * Purges this cache
View Full Code Here

     * Resets the cache statistics
     */
    public void resetCacheStatistics() {
        if (producers instanceof LRUCache) {
            LRUCache cache = (LRUCache) producers;
            cache.resetStatistics();
        }
    }

    /**
     * Purges this cache
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.