Package com.volantis.cache.impl

Examples of com.volantis.cache.impl.CacheEntryList


            throw new IllegalArgumentException(
                    "Max count must be > 0 but is " + maxCount);
        }
        this.maxCount = maxCount;
        this.clock = clock;
        entries = new CacheEntryList();
        removalListeners = new RemovalListenerList();

        purgeExcessEntriesAction = new PurgeExcessEntriesAction(this);
        gatherer = new StatisticsGatherer(clock);
    }
View Full Code Here

TOP

Related Classes of com.volantis.cache.impl.CacheEntryList

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.