Package org.jboss.dashboard.database.cache.custom.map

Examples of org.jboss.dashboard.database.cache.custom.map.SynchronizedLRUMap


     */
    private final SynchronizedLRUMap cache;

    public TimerCache(boolean monitorizeCaches, long timeout, int size) {
        this.timeout = timeout;
        cache = new SynchronizedLRUMap(size);
        thread = new Thread(this);
        thread.start();
        if (monitorizeCaches)
            this.cacheMonitor = new CacheMonitor(size);
    }
View Full Code Here

TOP

Related Classes of org.jboss.dashboard.database.cache.custom.map.SynchronizedLRUMap

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.