Package com.caucho.server.distcache

Examples of com.caucho.server.distcache.DistCacheEntry.peek()


  @Override
  public Object peek(Object key)
  {
    DistCacheEntry cacheEntry = _entryCache.get(key);

    return (cacheEntry != null) ? cacheEntry.peek() : null;
  }
 
  /**
   * Returns the hash of the given key
   */
 
View Full Code Here


   */
  public Object peek(Object key)
  {
    DistCacheEntry cacheEntry = _entryCache.get(key);

    return (cacheEntry != null) ? cacheEntry.peek() : null;
  }

  /**
   * Returns the object with the given key, checking the backing
   * store if necessary.
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.