Package org.springframework.data.gemfire

Examples of org.springframework.data.gemfire.ReplicatedRegionFactoryBean


    Region parent = context.getBean("complexNested", Region.class);
    Region child1 = context.getBean("/complexNested/child1", Region.class);
    Region child2 = context.getBean("/complexNested/child2", Region.class);
    Region grandchild11 = context.getBean("/complexNested/child1/grandChild11", Region.class);

    ReplicatedRegionFactoryBean grandchild11FactoryBean = context.getBean("&/complexNested/child1/grandChild11",
      ReplicatedRegionFactoryBean.class);

    assertNotNull(grandchild11FactoryBean);

    CacheLoader expectedCacheLoader = TestUtils.readField("cacheLoader", grandchild11FactoryBean);
View Full Code Here

TOP

Related Classes of org.springframework.data.gemfire.ReplicatedRegionFactoryBean

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.