Package org.apache.commons.cache

Examples of org.apache.commons.cache.CachedObjectInfo


    public synchronized void clear() {
        Iterator it = _hash.entrySet().iterator();
        while (it.hasNext()) {
            try {
                Map.Entry en = (Map.Entry) it.next();
                CachedObjectInfo obj = (CachedObjectInfo) en.getValue();
                ((File) (obj.getKey())).delete();
            } catch (Exception e) {
                // ignored
            }
        }
        _hash.clear();
View Full Code Here

TOP

Related Classes of org.apache.commons.cache.CachedObjectInfo

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.