Examples of PathRepositoryCache


Examples of org.jboss.dna.graph.connector.path.cache.PathRepositoryCache

     * @param cachePolicy the new cache policy; may not be null
     */
    public void setCachePolicy( PathCachePolicy cachePolicy ) {
        CheckArg.isNotNull(cachePolicy, "cachePolicy");

        PathRepositoryCache oldCache = repositoryCache;
        this.cachePolicy = cachePolicy;
        this.repositoryCache = new PathRepositoryCache(cachePolicy);

        oldCache.close();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.