Liferay 6.1.2-ce-ga3

com.liferay.portal.kernel.cache
Interface CacheListener

All Known Implementing Classes:
MultiVMKeyPoolCacheListener

public interface CacheListener


Method Summary
 void notifyEntryEvicted(PortalCache portalCache, Serializable key, Object value)
           
 void notifyEntryExpired(PortalCache portalCache, Serializable key, Object value)
           
 void notifyEntryPut(PortalCache portalCache, Serializable key, Object value)
           
 void notifyEntryRemoved(PortalCache portalCache, Serializable key, Object value)
           
 void notifyEntryUpdated(PortalCache portalCache, Serializable key, Object value)
           
 void notifyRemoveAll(PortalCache portalCache)
           
 

Method Detail

notifyEntryEvicted

void notifyEntryEvicted(PortalCache portalCache,
                        Serializable key,
                        Object value)
                        throws PortalCacheException
Throws:
PortalCacheException

notifyEntryExpired

void notifyEntryExpired(PortalCache portalCache,
                        Serializable key,
                        Object value)
                        throws PortalCacheException
Throws:
PortalCacheException

notifyEntryPut

void notifyEntryPut(PortalCache portalCache,
                    Serializable key,
                    Object value)
                    throws PortalCacheException
Throws:
PortalCacheException

notifyEntryRemoved

void notifyEntryRemoved(PortalCache portalCache,
                        Serializable key,
                        Object value)
                        throws PortalCacheException
Throws:
PortalCacheException

notifyEntryUpdated

void notifyEntryUpdated(PortalCache portalCache,
                        Serializable key,
                        Object value)
                        throws PortalCacheException
Throws:
PortalCacheException

notifyRemoveAll

void notifyRemoveAll(PortalCache portalCache)
                     throws PortalCacheException
Throws:
PortalCacheException

Liferay 6.1.2-ce-ga3