Package javax.cache.event
Interface CacheEntryRemovedListener<K,V>
-
- Type Parameters:
K- the type of keys maintained by the associated cacheV- the type of values maintained by the associated cache
- All Superinterfaces:
CacheEntryListener<K,V>,EventListener
- All Known Implementing Classes:
ClusterCacheInvalidationRequestSender
public interface CacheEntryRemovedListener<K,V> extends CacheEntryListener<K,V>
Invoked if a cache entry is removed, for example through aCache.remove(Object)call.- Since:
- 1.0
- Author:
- Yannis Cosmadopoulos, Greg Luck
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidentryRemoved(CacheEntryEvent<? extends K,? extends V> event)Called after the entry has been removed.
-
-
-
Method Detail
-
entryRemoved
void entryRemoved(CacheEntryEvent<? extends K,? extends V> event) throws CacheEntryListenerException
Called after the entry has been removed. If no entry existed for key the event is not called.- Parameters:
event- The entry just removed.- Throws:
CacheEntryListenerException- if there is problem executing the listener- See Also:
entryRemoved(CacheEntryEvent)
-
-