gedi.solutions.geode.functions.FunctionServiceExecutionFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gedi-geode-extensions-core Show documentation
Show all versions of gedi-geode-extensions-core Show documentation
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.Region;
import org.apache.geode.cache.execute.Execution;
import org.apache.geode.cache.execute.FunctionService;
public class FunctionServiceExecutionFactory implements ExecutionFactory, Serializable
{
/**
*
*/
private static final long serialVersionUID = 3157567950099427294L;
@Override
public Execution,?,?> onRegion(Region, ?> region)
{
return FunctionService.onRegion(region);
}
}