Interface RegionConfigurer
- All Superinterfaces:
Configurer<ClientRegionFactoryBean<?,
,?>> org.springframework.core.Ordered
- All Known Implementing Classes:
LazyResolvingComposableRegionConfigurer
The
RegionConfigurer
interface defines a contract for implementing Objects
in order to
customize the configuration of Entity-defined Regions
when a user annotates her Spring application
Configuration
Class
with EnableEntityDefinedRegions
or EnableCachingDefinedRegions
.- Since:
- 2.0.0
- See Also:
-
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
configure
(String beanName, ClientRegionFactoryBean<?, ?> bean) Configuration callback method providing a reference to aClientRegionFactoryBean
used to construct, configure and initialize an instance of a clientRegion
.default void
configure
(String beanName, PeerRegionFactoryBean<?, ?> bean) Configuration callback method providing a reference to aPeerRegionFactoryBean
used to construct, configure and initialize an instance of a peerRegion
.Methods inherited from interface org.springframework.data.gemfire.config.annotation.support.Configurer
getOrder
-
Method Details
-
configure
Configuration callback method providing a reference to aClientRegionFactoryBean
used to construct, configure and initialize an instance of a clientRegion
.- Specified by:
configure
in interfaceConfigurer<ClientRegionFactoryBean<?,
?>> - Parameters:
beanName
- name ofRegion
bean declared in the Spring application context.bean
- reference to theClientRegionFactoryBean
used to create the clientRegion
.- See Also:
-
configure
Configuration callback method providing a reference to aPeerRegionFactoryBean
used to construct, configure and initialize an instance of a peerRegion
.- Parameters:
beanName
- name ofRegion
bean declared in the Spring application context.bean
- reference to thePeerRegionFactoryBean
used to create the peerRegion
.- See Also:
-