Examples of GemfireOnRegionFunctionTemplate


Examples of org.springframework.data.gemfire.function.execution.GemfireOnRegionFunctionTemplate

    Class<?> serviceInterface = TestUtils.readField("serviceInterface", factoryBean);
    assertEquals(serviceInterface, TestOnRegionFunction.class);

    Region<?, ?> r1 = context.getBean("r1", Region.class);

    GemfireOnRegionFunctionTemplate template = TestUtils.readField("gemfireFunctionOperations", factoryBean);

    assertSame(r1, TestUtils.readField("region", template));
  }
View Full Code Here

Examples of org.springframework.data.gemfire.function.execution.GemfireOnRegionFunctionTemplate

    Class<?> serviceInterface = TestUtils.readField("serviceInterface", factoryBean);
    assertEquals(serviceInterface, TestOnRegionFunction.class);

    Region<?, ?> r1 = context.getBean("r1", Region.class);

    GemfireOnRegionFunctionTemplate template = TestUtils.readField("gemfireFunctionOperations", factoryBean);

    assertSame(r1, TestUtils.readField("region", template));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.