Liferay 6.2-ce-ga5

com.liferay.portal.kernel.cache
Interface CacheListener<K extends Serializable,V>


public interface CacheListener<K extends Serializable,V>


Method Summary
 void notifyEntryEvicted(PortalCache<K,V> portalCache, K key, V value)
           
 void notifyEntryExpired(PortalCache<K,V> portalCache, K key, V value)
           
 void notifyEntryPut(PortalCache<K,V> portalCache, K key, V value)
           
 void notifyEntryRemoved(PortalCache<K,V> portalCache, K key, V value)
           
 void notifyEntryUpdated(PortalCache<K,V> portalCache, K key, V value)
           
 void notifyRemoveAll(PortalCache<K,V> portalCache)
           
 

Method Detail

notifyEntryEvicted

void notifyEntryEvicted(PortalCache<K,V> portalCache,
                        K key,
                        V value)
                        throws PortalCacheException
Throws:
PortalCacheException

notifyEntryExpired

void notifyEntryExpired(PortalCache<K,V> portalCache,
                        K key,
                        V value)
                        throws PortalCacheException
Throws:
PortalCacheException

notifyEntryPut

void notifyEntryPut(PortalCache<K,V> portalCache,
                    K key,
                    V value)
                    throws PortalCacheException
Throws:
PortalCacheException

notifyEntryRemoved

void notifyEntryRemoved(PortalCache<K,V> portalCache,
                        K key,
                        V value)
                        throws PortalCacheException
Throws:
PortalCacheException

notifyEntryUpdated

void notifyEntryUpdated(PortalCache<K,V> portalCache,
                        K key,
                        V value)
                        throws PortalCacheException
Throws:
PortalCacheException

notifyRemoveAll

void notifyRemoveAll(PortalCache<K,V> portalCache)
                     throws PortalCacheException
Throws:
PortalCacheException

Liferay 6.2-ce-ga5