javax.cache.event
Interface CacheEntryReadListener<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 CacheEntryReadListener<K,V>
extends CacheEntryListener<K,V>

Invoked if a cache entry is read, for example through a Cache.get(Object) call.

Since:
1.0
Author:
Yannis Cosmadopoulos, Greg Luck

Method Summary
 void entryRead(CacheEntryEvent<? extends K,? extends V> event)
          Called after the entry has been read.
 

Method Detail

entryRead

void entryRead(CacheEntryEvent<? extends K,? extends V> event)
               throws CacheEntryListenerException
Called after the entry has been read. If no entry existed for the key the event is not called.

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


Copyright © 2012. All Rights Reserved.