com.bigdata.cache
Interface HardReferenceQueueEvictionListener<T>
- Type Parameters:
T -
- All Known Subinterfaces:
- IEvictionListener
- All Known Implementing Classes:
- DefaultEvictionListener, DefaultEvictionListenerTmp, NOPEvictionListener
public interface HardReferenceQueueEvictionListener<T>
Interface for reporting cache evictions.
- Version:
- $Id: HardReferenceQueueEvictionListener.java 2265 2009-10-26 12:51:06Z thompsonbry $
- Author:
- Bryan Thompson
evicted
void evicted(HardReferenceQueue<T> cache,
T ref)
- Notice that a reference is being evicted from the cache. This notice does
NOT imply that the cache no longer holds a reference to this object,
neither does it imply that the object is dirty.
- Parameters:
cache - The cache on which the listener is registered.ref - The reference that is being evicted from the cache.
Copyright © 2006-2009 SYSTAP, LLC. All Rights Reserved.