Interface CacheEntryVisitedEvent<K,V>
-
- All Superinterfaces:
CacheEntryEvent<K,V>,Event<K,V>,TransactionalEvent<K,V>
- All Known Implementing Classes:
EventImpl
public interface CacheEntryVisitedEvent<K,V> extends CacheEntryEvent<K,V>
This event subtype is passed in to any method annotated withCacheEntryVisited.- Since:
- 4.0
- Author:
- Manik Surtani
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.infinispan.notifications.cachelistener.event.Event
Event.Type
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VgetValue()Retrieves the value of the entry being visited.-
Methods inherited from interface org.infinispan.notifications.cachelistener.event.CacheEntryEvent
getKey, getMetadata, isCurrentState
-
Methods inherited from interface org.infinispan.notifications.cachelistener.event.Event
getCache, getType, isPre
-
Methods inherited from interface org.infinispan.notifications.cachelistener.event.TransactionalEvent
getGlobalTransaction, isOriginLocal
-
-
-
-
Method Detail
-
getValue
V getValue()
Retrieves the value of the entry being visited.- Specified by:
getValuein interfaceCacheEntryEvent<K,V>- Returns:
- the value of the visited entry
-
-