public class LocalRegionFactoryBean<K,V> extends PeerRegionFactoryBean<K,V>
FactoryBean
used to create a RegionShortcut.LOCAL
peer GemFireCache
Region
.DataPolicy
,
GemFireCache
,
Region
,
RegionFactory
,
RegionShortcut.LOCAL
,
PeerRegionFactoryBean
CREATING_REGION_LOG_MESSAGE, REGION_FOUND_LOG_MESSAGE, REGION_NOT_FOUND_ERROR_MESSAGE
DEFAULT_SINGLETON
Constructor and Description |
---|
LocalRegionFactoryBean() |
Modifier and Type | Method and Description |
---|---|
void |
afterPropertiesSet()
Applies all
RegionConfigurers . |
protected void |
resolveDataPolicy(org.apache.geode.cache.RegionFactory<K,V> regionFactory,
java.lang.Boolean persistent,
org.apache.geode.cache.DataPolicy dataPolicy)
Validates and sets the Data Policy on the RegionFactory used to create and configure the Region from this
FactoryBean.
|
protected void |
resolveDataPolicy(org.apache.geode.cache.RegionFactory<K,V> regionFactory,
java.lang.Boolean persistent,
java.lang.String dataPolicy)
Resolves the Data Policy used by this "local" GemFire Region (i.e.
|
void |
setScope(org.apache.geode.cache.Scope scope)
Configures the
Region's Scope , which affects data distribution
and acknowledgement strategy (useful in consistency) for the Region . |
addAsyncEventQueueIds, addAsyncEventQueues, addGatewaySenders, addGatewaySendersIds, configure, createRegion, createRegionFactory, destroy, getAttributes, getDataPolicy, getOffHeap, getPhase, getScope, getShortcut, getStatisticsEnabled, isAutoStartup, isNotPersistent, isOffHeap, isPersistent, isRunning, isStatisticsEnabled, mergePartitionAttributes, mergeRegionAttributes, postProcess, resolveStatisticsEnabled, setAsyncEventQueueIds, setAsyncEventQueues, setAttributes, setCacheListeners, setCacheLoader, setCacheWriter, setClose, setCompressor, setCustomEntryIdleTimeout, setCustomEntryTimeToLive, setDataPolicy, setDestroy, setDiskStoreName, setEntryIdleTimeout, setEntryTimeToLive, setEvictionAttributes, setGatewaySenderIds, setGatewaySenders, setKeyConstraint, setOffHeap, setPersistent, setRegionIdleTimeout, setRegionTimeToLive, setShortcut, setStatisticsEnabled, setValueConstraint, start, stop, stop
applyRegionConfigurers, applyRegionConfigurers, applyRegionConfigurers, getCompositeRegionConfigurer, setRegionConfigurers, setRegionConfigurers
getCache, getLookupEnabled, getObject, getObjectType, getParent, getRegion, isLookupEnabled, loadSnapshot, postProcess, resolveRegionName, setCache, setLookupEnabled, setName, setParent, setRegion, setRegionName, setSnapshot
getBeanClassLoader, getBeanFactory, getBeanName, getLogger, getOptionalLogger, isDebugLoggingEnabled, isErrorLoggingEnabled, isInfoLoggingEnabled, isSingleton, isWarnLoggingEnabled, logDebug, logDebug, logError, logError, logInfo, logInfo, logWarning, logWarning, newLogger, setBeanClassLoader, setBeanFactory, setBeanName
public void setScope(org.apache.geode.cache.Scope scope)
PeerRegionFactoryBean
Region's
Scope
, which affects data distribution
and acknowledgement strategy (useful in consistency) for the Region
.setScope
in class PeerRegionFactoryBean<K,V>
scope
- Scope
used to configure the Region's
data distribution
and acknowledgement strategy.Scope
public void afterPropertiesSet() throws java.lang.Exception
ConfigurableRegionFactoryBean
RegionConfigurers
.afterPropertiesSet
in interface org.springframework.beans.factory.InitializingBean
afterPropertiesSet
in class ConfigurableRegionFactoryBean<K,V>
java.lang.Exception
- if initialization fails.InitializingBean.afterPropertiesSet()
,
ResolvableRegionFactoryBean.createRegion(GemFireCache, String)
protected void resolveDataPolicy(org.apache.geode.cache.RegionFactory<K,V> regionFactory, java.lang.Boolean persistent, org.apache.geode.cache.DataPolicy dataPolicy)
PeerRegionFactoryBean
resolveDataPolicy
in class PeerRegionFactoryBean<K,V>
regionFactory
- the RegionFactory used by this FactoryBean to create and configure the Region.persistent
- a boolean value indicating whether the Region should be persistent and persist it's
data to disk.dataPolicy
- the configured Data Policy for the Region.PeerRegionFactoryBean.resolveDataPolicy(org.apache.geode.cache.RegionFactory, Boolean, String)
,
DataPolicy
,
RegionFactory
protected void resolveDataPolicy(org.apache.geode.cache.RegionFactory<K,V> regionFactory, java.lang.Boolean persistent, java.lang.String dataPolicy)
resolveDataPolicy
in class PeerRegionFactoryBean<K,V>
regionFactory
- the GemFire RegionFactory used to created the Local Region.persistent
- a boolean value indicating whether the Local Region should persist it's data.dataPolicy
- requested Data Policy as set by the user in the Spring GemFire configuration meta-data.DataPolicy
,
RegionFactory
,
RegionShortcut