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 . It is not invoked by a Cache.remove(Object) operation.

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

Method Summary
 void entriesUpdated(Iterable<CacheEntryEvent<? extends K,? extends V>> events)
          Called after the entries have been updated (put into the cache where a previous mapping existed).
 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)
Called after the entry has been updated (put into the cache where a previous mapping existed). This method is not called if a batch operation was performed.

Parameters:
event - The event just updated.
See Also:
entriesUpdated(Iterable)

entriesUpdated

void entriesUpdated(Iterable<CacheEntryEvent<? extends K,? extends V>> events)
Called after the entries have been updated (put into the cache where a previous mapping existed).

Parameters:
events - The entries just updated.


Copyright © 2011. All Rights Reserved.