Example usage for java.util.concurrent ConcurrentHashMap subclass-usage

List of usage examples for java.util.concurrent ConcurrentHashMap subclass-usage

Introduction

In this page you can find the example usage for java.util.concurrent ConcurrentHashMap subclass-usage.

Usage

From source file org.carewebframework.api.spring.ResourceCache.java

/**
 * Cache for resources returned by pattern matcher. Improves startup time of child application
 * contexts by caching resources after the initial lookup. Also, ensures that the returned resources
 * follow a predictable ordering.
 */
public class ResourceCache extends ConcurrentHashMap<String, Resource[]> {

From source file at.pcgamingfreaks.UUIDCacheMap.java

/**
 * This map implements a {@link ConcurrentHashMap} to store names case insensitive as key and UUIDs as String without the "-" separator.
 * It's used to cache the UUID's resolved by the {@link UUIDConverter}.
 */
class UUIDCacheMap extends ConcurrentHashMap<String, String> {
    @Override

From source file com.tealcube.minecraft.bukkit.mythicdrops.names.NameMap.java

public final class NameMap extends ConcurrentHashMap<String, List<String>> {

    private static final NameMap _INSTANCE = new NameMap();

    private NameMap() {
        // do nothing

From source file com.tealcube.minecraft.bukkit.mythicdrops.items.CustomItemMap.java

/**
 * An extension of {@link ConcurrentHashMap} designed to allow easy developer access to {@link CustomItem}s.
 */
public final class CustomItemMap extends ConcurrentHashMap<String, CustomItem> {

    private static final CustomItemMap _INSTANCE = new CustomItemMap();

From source file eu.stork.peps.auth.commons.PersonalAttributeList.java

/**
 * This class is a bean used to store the information relative to the
 * PersonalAttributeList.
 * 
 * @author ricardo.ferreira@multicert.com, renato.portela@multicert.com,
 *         luis.felix@multicert.com, hugo.magalhaes@multicert.com,

From source file com.tealcube.minecraft.bukkit.mythicdrops.tiers.TierMap.java

public final class TierMap extends ConcurrentHashMap<String, Tier> {

    private static final TierMap _INSTANCE = new TierMap();

    private TierMap() {
        // do nothing

From source file org.apache.openjpa.lib.util.concurrent.NullSafeConcurrentHashMap.java

/**
 * A subclass of {@link ConcurrentHashMap} that allows null keys and values.
 * In exchange, it weakens the contract of {@link #putIfAbsent} and the other
 * concurrent methods added in {@link #ConcurrentHashMap}.
 *
 * @since 1.1.0

From source file org.frontcache.core.RequestContext.java

/**
 * The Request Context holds request, response,  state information and data to access and share.
 * The RequestContext lives for the duration of the request and is ThreadLocal.
 * extensions of RequestContext can be substituted by setting the contextClass.
 * Most methods here are convenience wrapper methods; the RequestContext is an extension of a ConcurrentHashMap
 *

From source file org.opentestsystem.shared.test.cooperation.StageImpl.java

/**
 * This implementation uses a naive synchronization scheme that may not scale
 * well to large stages.
 * 
 * @author temp_dmenes
 * 

From source file org.starnub.starnubserver.resources.connections.Players.java

/**
 * Represents StarNubTask instance
 *
 * @author Daniel (Underbalanced) (www.StarNub.org)
 * @since 1.0 Beta
 */