Package org.cache2k.core.spi
Interface CacheLifeCycleListener
-
public interface CacheLifeCycleListenerInterface to implement additional service providers that get notified on a lifecycle change of the cache. Used for JMX support.- Author:
- Jens Wilke
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K,V>
voidcacheClosed(org.cache2k.Cache<K,V> cache, InternalCacheCloseContext ctx)<K,V>
voidcacheCreated(org.cache2k.Cache<K,V> cache, InternalCacheBuildContext<K,V> ctx)
-
-
-
Method Detail
-
cacheCreated
<K,V> void cacheCreated(org.cache2k.Cache<K,V> cache, InternalCacheBuildContext<K,V> ctx)
-
cacheClosed
<K,V> void cacheClosed(org.cache2k.Cache<K,V> cache, InternalCacheCloseContext ctx)
-
-