com.alachisoft.ncache.web.caching
Interface CacheItemUpdatedCallback
public interface CacheItemUpdatedCallback
Defines a callback method for notifying applications when an item is updated in the Cache.
Since this handler is invoked every time an item is removed from the Cache, doing a lot of processing inside the handler might have an impact on the performance of the cache and cluster.
It is therefore advisable to do minimal processing inside the handler.
Method Summary |
void |
itemUpdated(java.lang.String key)
The method which is invoked. |
itemUpdated
void itemUpdated(java.lang.String key)
- The method which is invoked.
- Parameters:
key
- The cacheKey which is updated.