|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CacheEntryEvent | |
|---|---|
| javax.cache.event | This package contains event listener interfaces. |
| Uses of CacheEntryEvent in javax.cache.event |
|---|
| Methods in javax.cache.event with parameters of type CacheEntryEvent | |
|---|---|
void |
CacheEntryCreatedListener.entryCreated(CacheEntryEvent<? extends K,? extends V> event)
Called after the entry has been created (put into the cache where no previous mapping existed). |
void |
CacheEntryExpiredListener.entryExpired(CacheEntryEvent<? extends K,? extends V> entry)
Called after the entry has expired and has thus been removed from the Cache. |
void |
CacheEntryReadListener.entryRead(CacheEntryEvent<? extends K,? extends V> event)
Called after the entry has been read. |
void |
CacheEntryRemovedListener.entryRemoved(CacheEntryEvent<? extends K,? extends V> event)
Called after the entry has been removed. |
void |
CacheEntryUpdatedListener.entryUpdated(CacheEntryEvent<? extends K,? extends V> event)
Called after the entry has been updated (put into the cache where a previous mapping existed). |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||