Uses of Interface
org.exoplatform.services.cache.CacheListenerContext
Packages that use CacheListenerContext
Package
Description
This package provides an API used for data caching.
-
Uses of CacheListenerContext in org.exoplatform.services.cache
Methods in org.exoplatform.services.cache with parameters of type CacheListenerContextModifier and TypeMethodDescriptionvoidCacheListener.onClearCache(CacheListenerContext context) The cache is globally cleared.voidCacheListener.onExpire(CacheListenerContext context, K key, V obj) An entry is expired from the cache.voidCacheListener.onGet(CacheListenerContext context, K key, V obj) An entry is retrieved from the cache.voidCacheListener.onPut(CacheListenerContext context, K key, V obj) An entry is inserted in the cache.default voidCacheListener.onPutLocal(CacheListenerContext context, K key, V obj) An entry is inserted in the cache (local mode without replication).voidCacheListener.onRemove(CacheListenerContext context, K key, V obj) An entry is removed from the cache. -
Uses of CacheListenerContext in org.exoplatform.services.cache.concurrent
Classes in org.exoplatform.services.cache.concurrent that implement CacheListenerContext -
Uses of CacheListenerContext in org.exoplatform.services.cache.impl
Methods in org.exoplatform.services.cache.impl with parameters of type CacheListenerContextModifier and TypeMethodDescriptionvoidLoggingCacheListener.onClearCache(CacheListenerContext context) voidLoggingCacheListener.onExpire(CacheListenerContext context, Serializable key, Object obj) voidLoggingCacheListener.onGet(CacheListenerContext context, Serializable key, Object obj) voidLoggingCacheListener.onPut(CacheListenerContext context, Serializable key, Object obj) voidLoggingCacheListener.onRemove(CacheListenerContext context, Serializable key, Object obj) -
Uses of CacheListenerContext in org.exoplatform.services.cache.invalidation
Methods in org.exoplatform.services.cache.invalidation with parameters of type CacheListenerContextModifier and TypeMethodDescriptionvoidInvalidationExoCache.onClearCache(CacheListenerContext context) voidInvalidationExoCache.onExpire(CacheListenerContext context, K key, HashCode<V> obj) An entry is expired from the cache.voidInvalidationExoCache.onGet(CacheListenerContext context, K key, HashCode<V> obj) An entry is retrieved from the cache.voidInvalidationExoCache.onPut(CacheListenerContext context, K key, HashCode<V> obj) An entry is inserted in the cache.voidInvalidationExoCache.onRemove(CacheListenerContext context, K key, HashCode<V> obj) An entry is removed from the cache.