Uses of Interface
org.xwiki.cache.event.CacheEntryEvent
-
Packages that use CacheEntryEvent Package Description org.xwiki.cache.event org.xwiki.cache.util -
-
Uses of CacheEntryEvent in org.xwiki.cache.event
Methods in org.xwiki.cache.event with parameters of type CacheEntryEvent Modifier and Type Method Description void
AbstractCacheEntryListener. cacheEntryAdded(CacheEntryEvent<T> event)
void
CacheEntryListener. cacheEntryAdded(CacheEntryEvent<T> event)
Called when a new value is inserted in the cache.void
AbstractCacheEntryListener. cacheEntryModified(CacheEntryEvent<T> event)
void
CacheEntryListener. cacheEntryModified(CacheEntryEvent<T> event)
Called when an existing value is overwritten in the cache.void
AbstractCacheEntryListener. cacheEntryRemoved(CacheEntryEvent<T> event)
void
CacheEntryListener. cacheEntryRemoved(CacheEntryEvent<T> event)
Called when an existing value is removed from the cache. -
Uses of CacheEntryEvent in org.xwiki.cache.util
Methods in org.xwiki.cache.util with parameters of type CacheEntryEvent Modifier and Type Method Description protected void
AbstractCache. sendEntryAddedEvent(CacheEntryEvent<T> event)
Helper method to send event when a new cache entry is inserted.protected void
AbstractCache. sendEntryModifiedEvent(CacheEntryEvent<T> event)
Helper method to send event when a cache entry is modified.protected void
AbstractCache. sendEntryRemovedEvent(CacheEntryEvent<T> event)
Helper method to send event when an existing cache entry is removed.
-