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

gedi.solutions.geode.functions.CacheRegionDictionary Maven / Gradle / Ivy

Go to download

GemFire Enterprise Data Integration - common development extensions powered by Apache Geode

The newest version!
package gedi.solutions.geode.functions;

import java.io.Serializable;

import org.apache.geode.cache.CacheFactory;
import org.apache.geode.cache.Region;


/**
 * @author Gregory Green
 *
 */
public class CacheRegionDictionary implements RegionDictionary, Serializable
{

	/**
	 * 
	 */
	private static final long serialVersionUID = 9067270223076402385L;


	@Override
	public  Region getRegion(String name)
	{
		return CacheFactory.getAnyInstance().getRegion(name);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy