479480481482483484485486487488489
@Override public Object peek(Object key) { DistCacheEntry cacheEntry = _entryCache.get(key); return (cacheEntry != null) ? cacheEntry.peek() : null; } /** * Returns the hash of the given key */
420421422423424425426427428429430
*/ 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.