use of org.apache.geode.internal.cache.functions.LocalDataSetFunction in project geode by apache.
the class LDSRoutingObject method registerFunction.
public static void registerFunction() {
Function function1 = new LocalDataSetFunction(false);
Function function2 = new LocalDataSetFunction(true);
FunctionService.registerFunction(function1);
FunctionService.registerFunction(function2);
}
Aggregations