Package org.jboss.capedwarf.server.api.cache

Examples of org.jboss.capedwarf.server.api.cache.CacheEntryLookup


*/
public abstract class AbstractCacheEntryLookupFactory implements CacheEntryLookupFactory {
    private Map<String, CacheEntryLookup> lookups = new ConcurrentSkipListMap<String, CacheEntryLookup>();

    public CacheEntryLookup createCacheEntryLookup(String cacheName, Cache cache) {
        CacheEntryLookup cel = lookups.get(cacheName);
        if (cel != null)
            return cel;

        CacheEntryLookup acel = doCreateCacheEntryLookup(cache);
        lookups.put(cacheName, acel);
        return acel;
    }
View Full Code Here

TOP

Related Classes of org.jboss.capedwarf.server.api.cache.CacheEntryLookup

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.