javax.cache.event
Interface CacheEntryUpdatedListener<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
public interface CacheEntryUpdatedListener<K,V>
- extends CacheEntryListener<K,V>
Invoked if an existing cache entry is updated, or if a batch call is made, after the entries are updated.
- Since:
- 1.0
- Author:
- Yannis Cosmadopoulos, Greg Luck
- See Also:
CacheEntryCreatedListener
onUpdated
void onUpdated(Iterable<CacheEntryEvent<? extends K,? extends V>> events)
throws CacheEntryListenerException
- Called after one or more entries have been updated.
- Parameters:
events
- The entries just updated.
- Throws:
CacheEntryListenerException
- if there is problem executing the listener
Copyright © 2013. All Rights Reserved.