Package de.innovationgate.utils.cache

Examples of de.innovationgate.utils.cache.Cache.destroy()


    private synchronized void init() throws CacheException {
       
        Cache oldCache = _cache;
        _cache = CacheFactory.createCache("WebTMLCache-" + increaseCacheIndex(), _capacity, null);
        if (oldCache != null) {
            oldCache.destroy();
        }
    }

    private int increaseCacheIndex() {
        _cacheIndex++;
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.