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 listeners and scoping interfaces. 
 

Uses of CacheEntryListener in javax.cache
 

Methods in javax.cache with parameters of type CacheEntryListener
 boolean Cache.registerCacheEntryListener(CacheEntryListener cacheEntryListener, NotificationScope scope)
          Adds a listener to the notification service.
 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.
 interface CacheEntryExpiredListener<K,V>
          Invoked if a cache entry is removed, for example through a Cache.remove(Object) call.
 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) operation.
 



Copyright © 2011. All Rights Reserved.