Package org.xwiki.cache.event
Interface CacheEntryEvent<T>
-
- Type Parameters:
T
- the class of the data stored in the cache.
- All Superinterfaces:
CacheEvent<T>
public interface CacheEntryEvent<T> extends CacheEvent<T>
Base object used to contains informations when sending cache entry events.- Version:
- $Id: dd5bba2a8d3cf77a203d72f506e1950a296cb4bc $
- See Also:
CacheEntryListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CacheEntry<T>
getEntry()
-
Methods inherited from interface org.xwiki.cache.event.CacheEvent
getCache
-
-
-
-
Method Detail
-
getEntry
CacheEntry<T> getEntry()
- Returns:
- the cache entry containing, among other things, the value and the key.
-
-