Annotation Interface EnableClusterDefinedRegions
@Target(TYPE)
@Retention(RUNTIME)
@Inherited
@Documented
@Import(ClusterDefinedRegionsConfiguration.class)
public @interface EnableClusterDefinedRegions
The
EnableClusterDefinedRegions
annotation marks a Spring @Configuration
application
annotated class to enable the creation of client Proxy-based Regions
for all Regions
defined in an Apache Geode/Pivotal GemFire cluster.- Since:
- 2.1.0
- See Also:
-
Region
ClientCache
Configuration
Import
ClusterDefinedRegionsConfiguration
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionorg.apache.geode.cache.client.ClientRegionShortcut
Configures the clientRegion
data management policy for all clientRegions
created from the corresponding server-sideRegion
.
-
Element Details
-
clientRegionShortcut
org.apache.geode.cache.client.ClientRegionShortcut clientRegionShortcutConfigures the clientRegion
data management policy for all clientRegions
created from the corresponding server-sideRegion
. Defaults toClientRegionShortcut.PROXY
.- See Also:
-
ClientRegionShortcut
- Default:
- PROXY
-