Package org.nemesis.forum.util.cache

Examples of org.nemesis.forum.util.cache.CacheObject


    }
    return subCache;
  }

  public synchronized void remove(Object key) {
    CacheObject cacheObject = (CacheObject) cachedObjectsHash.get(key);
    //If the object is not in cache, stop trying to remove it.
    if (cacheObject == null) {
      return;
    }
    //remove from the hash map
View Full Code Here

TOP

Related Classes of org.nemesis.forum.util.cache.CacheObject

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.