Package org.onemind.commons.java.datastructure

Examples of org.onemind.commons.java.datastructure.MruMap


     * @param cacheSize The default cache size
     * @param timeout time to expire inactive cache
     */
    public CachingPageSource(int cacheSize, int timeout)
    {
        _pageCache = new MruMap(cacheSize, timeout);
    }
View Full Code Here

TOP

Related Classes of org.onemind.commons.java.datastructure.MruMap

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.