javax.cache.event
Interface CacheEntryUpdatedListener<K,V>

Type Parameters:
K - the type of keys maintained by the associated cache
V - 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, for example through a Cache.put(Object, Object) or a CacheLoader operation .

Since:
1.0
Author:
Yannis Cosmadopoulos, Greg Luck
See Also:
CacheEntryCreatedListener

Method Summary
 void entryUpdated(CacheEntryEvent<? extends K,? extends V> event)
          Called after the entry has been updated (put into the cache where a previous mapping existed).
 

Method Detail

entryUpdated

void entryUpdated(CacheEntryEvent<? extends K,? extends V> event)
                  throws CacheEntryListenerException
Called after the entry has been updated (put into the cache where a previous mapping existed).

Parameters:
event - The event just updated.
Throws:
CacheEntryListenerException - if there is problem executing the listener


Copyright © 2012. All Rights Reserved.