| com.completex.objective.components.ocache.OdalCacheRegistry
All known Subclasses: com.completex.objective.components.ocache.impl.DefaultCacheFactoryImpl,
OdalCacheRegistry | public interface OdalCacheRegistry extends OdalCacheFactory(Code) | | Odal Cache Registry
author: Gennady Krizhevsky |
Method Summary | |
void | registerCache(OdalCache cache) Registers cache itself if it is instance of OdalKeyedCache ot creates a
OdalKeyedCache decorator for a cache and then registers it. | void | registerCache(OdalCache cache, OdalCacheConfig cacheConfig) Registers cache itself if it is instance of OdalKeyedCache ot creates a
OdalKeyedCache decorator for a cache and then registers it. | void | registerCache(OdalCache cache, OdalKeyFactory keyFactory) Registers cache itself if it is instance of OdalKeyedCache ot creates a
OdalKeyedCache decorator for a cache and then registers it.
Parameters: cache - cache to register Parameters: keyFactory - key factory for OdalKeyedCache decorator. | void | registerCache(OdalCache cache, OdalKeyFactory keyFactory, OdalCacheConfig cacheConfig) Registers cache itself if it is instance of OdalKeyedCache ot creates a
OdalKeyedCache decorator for a cache and then registers it.
See Also: OdalCacheConfig Parameters: cache - cache to register Parameters: keyFactory - key factory for OdalKeyedCache decorator. | void | unregisterCache(String name) |
registerCache | void registerCache(OdalCache cache)(Code) | | Registers cache itself if it is instance of OdalKeyedCache ot creates a
OdalKeyedCache decorator for a cache and then registers it.
Parameters: cache - cache to registeralready then this parameter is ignored throws: OdalRuntimeCacheException - if cache with the same name already exists |
registerCache | void registerCache(OdalCache cache, OdalCacheConfig cacheConfig)(Code) | | Registers cache itself if it is instance of OdalKeyedCache ot creates a
OdalKeyedCache decorator for a cache and then registers it.
See Also: OdalCacheConfig Parameters: cache - cache to registeralready then this parameter is ignored Parameters: cacheConfig - throws: OdalRuntimeCacheException - if cache with the same name already exists |
registerCache | void registerCache(OdalCache cache, OdalKeyFactory keyFactory)(Code) | | Registers cache itself if it is instance of OdalKeyedCache ot creates a
OdalKeyedCache decorator for a cache and then registers it.
Parameters: cache - cache to register Parameters: keyFactory - key factory for OdalKeyedCache decorator. If the cache is OdalKeyedCachealready then this parameter is ignored throws: OdalRuntimeCacheException - if cache with the same name already exists |
registerCache | void registerCache(OdalCache cache, OdalKeyFactory keyFactory, OdalCacheConfig cacheConfig)(Code) | | Registers cache itself if it is instance of OdalKeyedCache ot creates a
OdalKeyedCache decorator for a cache and then registers it.
See Also: OdalCacheConfig Parameters: cache - cache to register Parameters: keyFactory - key factory for OdalKeyedCache decorator. If the cache is OdalKeyedCachealready then this parameter is ignored Parameters: cacheConfig - throws: OdalRuntimeCacheException - if cache with the same name already exists |
unregisterCache | void unregisterCache(String name)(Code) | | Unregisters cache
Parameters: name - |
|
|