Package | Description |
---|---|
javax.cache.event |
Modifier and Type | Method and Description |
---|---|
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)
todo change this to have two args: the old value and the new value
Called after the entry has been updated (put into the cache where a previous mapping existed).
|
Copyright © 2015 WSO2 Inc. All rights reserved.