RegionFactorySetCloningEnabled Method |
Set cloning enabled flag for this region.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic RegionFactory SetCloningEnabled(
bool cloningEnabled
)
Public Function SetCloningEnabled (
cloningEnabled As Boolean
) As RegionFactory
public:
RegionFactory^ SetCloningEnabled(
bool cloningEnabled
)
member SetCloningEnabled :
cloningEnabled : bool -> RegionFactory
Parameters
- cloningEnabled
- Type: SystemBoolean
if true, clone old value before applying delta so that in-place change would not occour..
Return Value
Type:
RegionFactorythe instance of RegionFactory
Remarks
If set to false, then there is no cloning will take place in case of delta.
Delta will be applied on the old value which will change old value in-place.
The default if not set is 'false'
of ScopeType.Local scope.
See Also