Examples of OnRegionFunctionProxyFactoryBean


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

  @Autowired
  ApplicationContext context;

  @Test
  public void testProxyFactoryBeanCreated() throws Exception {
    OnRegionFunctionProxyFactoryBean factoryBean = (OnRegionFunctionProxyFactoryBean) context
        .getBean("&testFunction");
    Class<?> serviceInterface = TestUtils.readField("serviceInterface", factoryBean);
    assertEquals(serviceInterface, TestOnRegionFunction.class);

    Region<?, ?> r1 = context.getBean("r1", Region.class);
View Full Code Here

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

  @Autowired
  ApplicationContext context;

  @Test
  public void testProxyFactoryBeanCreated() throws Exception {
    OnRegionFunctionProxyFactoryBean factoryBean = (OnRegionFunctionProxyFactoryBean) context
        .getBean("&testFunction");
    Class<?> serviceInterface = TestUtils.readField("serviceInterface", factoryBean);
    assertEquals(serviceInterface, TestOnRegionFunction.class);

    Region<?, ?> r1 = context.getBean("r1", Region.class);
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.