Package org.springframework.data.gemfire.function.execution

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


    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

Related Classes of org.springframework.data.gemfire.function.execution.GemfireOnRegionFunctionTemplate

Copyright © 2018 www.massapicom. 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.