Class DynamicRegionFactoryType
java.lang.Object
org.apache.geode.cache.configuration.DynamicRegionFactoryType
dynamic-region-factory is deprecated. Use functions to create regions dynamically
instead.
A "dynamic-region-factory" element configures a dynamic region factory for
this cache. If this optional element is missing then the cache does not
support dynamic regions.
The optional "disk-dir" sub-element can be used to specify the directory to
store the persistent files that are used for dynamic region bookkeeping.
It defaults to the current directory.
The pool-name attribute can be used to set the name of the connection pool used
by client applications in a client/server cache configuration. It should not be
specified in servers or peers.
Java class for dynamic-region-factory-type complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="dynamic-region-factory-type">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="disk-dir" type="{http://geode.apache.org/schema/cache}disk-dir-type" minOccurs="0"/>
</sequence>
<attribute name="disable-persist-backup" type="{http://www.w3.org/2001/XMLSchema}boolean" />
<attribute name="disable-register-interest" type="{http://www.w3.org/2001/XMLSchema}boolean" />
<attribute name="pool-name" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Booleanprotected Booleanprotected DiskDirTypeprotected String -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the diskDir property.Gets the value of the poolName property.Gets the value of the disablePersistBackup property.Gets the value of the disableRegisterInterest property.voidsetDisablePersistBackup(Boolean value) Sets the value of the disablePersistBackup property.voidSets the value of the disableRegisterInterest property.voidsetDiskDir(DiskDirType value) Sets the value of the diskDir property.voidsetPoolName(String value) Sets the value of the poolName property.
-
Field Details
-
diskDir
-
disablePersistBackup
-
disableRegisterInterest
-
poolName
-
-
Constructor Details
-
DynamicRegionFactoryType
public DynamicRegionFactoryType()
-
-
Method Details
-
getDiskDir
Gets the value of the diskDir property. possible object isDiskDirType- Returns:
- the
DiskDirType.
-
setDiskDir
Sets the value of the diskDir property. allowed object isDiskDirType- Parameters:
value- theDiskDirType.
-
isDisablePersistBackup
Gets the value of the disablePersistBackup property. possible object isBoolean- Returns:
- true if persistent backup is disabled, false otherwise.
-
setDisablePersistBackup
Sets the value of the disablePersistBackup property. allowed object isBoolean- Parameters:
value- true to disable persist backup, false to enable it.
-
isDisableRegisterInterest
Gets the value of the disableRegisterInterest property. possible object isBoolean- Returns:
- true if register interest is disabled.
-
setDisableRegisterInterest
Sets the value of the disableRegisterInterest property. allowed object isBoolean- Parameters:
value- true to enable register interest, false to enable it.
-
getPoolName
Gets the value of the poolName property. possible object isString- Returns:
- the pool name.
-
setPoolName
Sets the value of the poolName property. allowed object isString- Parameters:
value- the pool name.
-