Uses of Interface
org.exoplatform.services.cache.CacheListenerContext
-
Packages that use CacheListenerContext Package Description org.exoplatform.services.cache This package provides an API used for data caching.org.exoplatform.services.cache.concurrent org.exoplatform.services.cache.impl org.exoplatform.services.cache.invalidation -
-
Uses of CacheListenerContext in org.exoplatform.services.cache
Methods in org.exoplatform.services.cache with parameters of type CacheListenerContext Modifier and Type Method Description voidCacheListener. 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 Modifier and Type Class Description classListenerContext<K,V> -
Uses of CacheListenerContext in org.exoplatform.services.cache.impl
Methods in org.exoplatform.services.cache.impl with parameters of type CacheListenerContext Modifier and Type Method Description voidLoggingCacheListener. 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 CacheListenerContext Modifier and Type Method Description voidInvalidationExoCache. 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.
-