Example usage for java.util.concurrent ConcurrentMap interface-usage

List of usage examples for java.util.concurrent ConcurrentMap interface-usage

Introduction

In this page you can find the example usage for java.util.concurrent ConcurrentMap interface-usage.

Usage

From source file org.apache.geode.geospatial.utils.CachingPutAllMap.java

/**
 * Created by Charlie Black on 5/2/16.
 */
public class CachingPutAllMap implements ConcurrentMap, InitializingBean, BeanNameAware {
    private String beanName = "sendToGemfire";
    private Map wrappedMap;

From source file ConcurrentWeakHashMap.java

/**
 * A hash table with <em>weak keys</em>, full concurrency of retrievals, and
 * adjustable expected concurrency for updates. Similar to
 * {@link java.util.WeakHashMap}, entries of this table are periodically
 * removed once their corresponding keys are no longer referenced outside of
 * this table. In other words, this table will not prevent a key from being

From source file ConcurrentReferenceHashMap.java

/**
 * An advanced hash table supporting configurable garbage collection semantics
 * of keys and values, optional referential-equality, full concurrency of
 * retrievals, and adjustable expected concurrency for updates.
 *
 * This table is designed around specific advanced use-cases. If there is any

From source file NavigableMap.java

/**
 * A {@link ConcurrentMap} supporting {@link NavigableMap} operations.
 * 
 * @author Doug Lea
 * @param <K>
 *          the type of keys maintained by this map