Example usage for org.springframework.data.gemfire LookupRegionFactoryBean LookupRegionFactoryBean

List of usage examples for org.springframework.data.gemfire LookupRegionFactoryBean LookupRegionFactoryBean

Introduction

In this page you can find the example usage for org.springframework.data.gemfire LookupRegionFactoryBean LookupRegionFactoryBean.

Prototype

LookupRegionFactoryBean

Source Link

Usage

From source file:io.pivotal.example.SpringGemFireApplication.java

@Bean
LookupRegionFactoryBean<Long, Long> calculatorRegion(Cache gemfireCache) {
    LookupRegionFactoryBean<Long, Long> calculatorRegion = new LookupRegionFactoryBean<>();

    calculatorRegion.setCache(gemfireCache);
    calculatorRegion.setName("CalculatorRegion");

    return calculatorRegion;
}