Package org.apache.marmotta.kiwi.infinispan.util

Examples of org.apache.marmotta.kiwi.infinispan.util.AsyncMap


     * @see org.apache.marmotta.commons.sesame.model.LiteralCommons#createCacheKey(String, java.util.Locale, String)
     */
    @Override
    public Map<String, KiWiLiteral> getLiteralCache() {
        if(literalCache == null) {
            literalCache = new AsyncMap(cacheManager.getCache(LITERAL_CACHE));
        }
        return literalCache;
    }
View Full Code Here


     * @return
     */
    @Override
    public Map<String, KiWiNamespace> getNamespaceUriCache() {
        if(nsUriCache == null) {
            nsUriCache = new AsyncMap(cacheManager.getCache(NS_URI_CACHE));
        }
        return nsUriCache;
    }
View Full Code Here

     * @return
     */
    @Override
    public Map<String, KiWiNamespace> getNamespacePrefixCache() {
        if(nsPrefixCache == null) {
            nsPrefixCache = new AsyncMap(cacheManager.getCache(NS_PREFIX_CACHE));
        }
        return nsPrefixCache;
    }
View Full Code Here

TOP

Related Classes of org.apache.marmotta.kiwi.infinispan.util.AsyncMap

Copyright © 2018 www.massapicom. 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.