Uses of Interface
javax.cache.event.CacheEntryListener
-
Packages that use CacheEntryListener Package Description javax.cache javax.cache.event org.wso2.carbon.caching.impl org.wso2.carbon.caching.impl.clustering org.wso2.carbon.caching.impl.internal -
-
Uses of CacheEntryListener in javax.cache
Methods in javax.cache with parameters of type CacheEntryListener Modifier and Type Method Description booleanCache. 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.booleanCache. unregisterCacheEntryListener(CacheEntryListener<?,?> cacheEntryListener)Removes a call back listener. -
Uses of CacheEntryListener in javax.cache.event
Subinterfaces of CacheEntryListener in javax.cache.event Modifier and Type Interface Description interfaceCacheEntryCreatedListener<K,V>Invoked if a cache entry is created, for example through aCache.put(Object, Object)operation or the action of aCacheLoader.interfaceCacheEntryExpiredListener<K,V>Invoked if a cache entry is evicted because of expiration.interfaceCacheEntryReadListener<K,V>Invoked if a cache entry is read, for example through aCache.get(Object)call.interfaceCacheEntryRemovedListener<K,V>Invoked if a cache entry is removed, for example through aCache.remove(Object)call.interfaceCacheEntryUpdatedListener<K,V>Invoked if an existing cache entry is updated, for example through aCache.put(Object, Object)or aCacheLoaderoperation . -
Uses of CacheEntryListener in org.wso2.carbon.caching.impl
Methods in org.wso2.carbon.caching.impl that return types with arguments of type CacheEntryListener Modifier and Type Method Description List<CacheEntryListener>DataHolder. getCacheEntryListeners()Methods in org.wso2.carbon.caching.impl with parameters of type CacheEntryListener Modifier and Type Method Description CacheBuilder<K,V>CacheBuilderImpl. registerCacheEntryListener(CacheEntryListener<K,V> cacheEntryListener)booleanCacheImpl. registerCacheEntryListener(CacheEntryListener<? super K,? super V> cacheEntryListener)booleanCacheImpl. unregisterCacheEntryListener(CacheEntryListener<?,?> cacheEntryListener) -
Uses of CacheEntryListener in org.wso2.carbon.caching.impl.clustering
Classes in org.wso2.carbon.caching.impl.clustering that implement CacheEntryListener Modifier and Type Class Description classClusterCacheInvalidationRequestSenderListens for cache entry removals and updates, and sends a cache invalidation request to the other members in the cluster. -
Uses of CacheEntryListener in org.wso2.carbon.caching.impl.internal
Methods in org.wso2.carbon.caching.impl.internal with parameters of type CacheEntryListener Modifier and Type Method Description protected voidCachingServiceComponent. addCacheEntryListener(CacheEntryListener cacheEntryListener)protected voidCachingServiceComponent. removeCacheEntryListener(CacheEntryListener cacheEntryListener)
-