Package org.fjank.jcache.collection

Examples of org.fjank.jcache.collection.MapAdapter


     * A method to retrieve a Map based implementation
     * of a CacheAccess to the default region.
     * @return a Map based Cache implementation to the default region.
     */
  public CacheMap getMapAccess() {
    return new MapAdapter(getNewAccessImpl(null));
  }
View Full Code Here


   * A method to retrieve a Map based implementation
   * of a CacheAccess to the specified region.
   * @return a Map based Cache implementation to the specified region.
   */
  public CacheMap getMapAccess(final String region) {
    return new MapAdapter(getNewAccessImpl(region));
  }
View Full Code Here

TOP

Related Classes of org.fjank.jcache.collection.MapAdapter

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.