Uses of Interface
javax.cache.event.CacheEntryListener

Packages that use CacheEntryListener
javax.cache

This package contains the API for JCache. 

javax.cache.event This package contains event listener interfaces. 
 

Uses of CacheEntryListener in javax.cache
 

Methods in javax.cache with parameters of type CacheEntryListener
 boolean Cache.registerCacheEntryListener(CacheEntryListener<? super K,? super V> cacheEntryListener)
          Adds a listener to the notification service.
 CacheBuilder<K,V> CacheBuilder.registerCacheEntryListener(CacheEntryListener<K,V> cacheEntryListener)
          Registers a listener.
 boolean Cache.unregisterCacheEntryListener(CacheEntryListener<?,?> cacheEntryListener)
          Removes a call back listener.
 

Uses of CacheEntryListener in javax.cache.event
 

Subinterfaces of CacheEntryListener in javax.cache.event
 interface CacheEntryCreatedListener<K,V>
          Invoked if a cache entry is created, for example through a Cache.put(Object, Object) operation or the action of a CacheLoader.
 interface CacheEntryExpiredListener<K,V>
          Invoked if a cache entry is evicted because of expiration.
 interface CacheEntryReadListener<K,V>
          Invoked if a cache entry is read, for example through a Cache.get(Object) call.
 interface CacheEntryRemovedListener<K,V>
          Invoked if a cache entry is removed, for example through a Cache.remove(Object) call.
 interface CacheEntryUpdatedListener<K,V>
          Invoked if an existing cache entry is updated, for example through a Cache.put(Object, Object) or a CacheLoader operation .
 



Copyright © 2012. All Rights Reserved.