org.fabric3.cache.runtime.CacheRegistry Maven / Gradle / Ivy
package org.fabric3.cache.runtime;
/**
* Returns live references to caches configured on a runtime.
*/
public interface CacheRegistry {
/**
* Returns a live, thread-safe reference to a cache or null if one is not defined for the given name.
*
* @param name the cache name
* @param the cache reference type
* @return the cache reference or null
*/
CACHE getCache(String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy