All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yestech.cache.impl.NonBlockingMapCacheManager Maven / Gradle / Ivy

The newest version!
/*
 * Copyright LGPL3
 * YES Technology Association
 * http://yestech.org
 *
 * http://www.opensource.org/licenses/lgpl-3.0.html
 */

/*
 *
 * Author:  Artie Copeland
 * Last Modified Date: $DateTime: $
 */
package org.yestech.cache.impl;

import org.cliffc.high_scale_lib.NonBlockingHashMap;

/**
 * Cache Manager for Cliff Click's Scalable Non-Blocking Collections
 * {@link NonBlockingHashMap}
 *
 * @author Artie Copeland
 * @version $Revision: $
 */
@SuppressWarnings("unchecked")
public class NonBlockingMapCacheManager extends ConcurrentMapCacheManager {
    public NonBlockingMapCacheManager() {
        super();
        setCache(new NonBlockingHashMap());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy