Click or drag to resize
RegionFactorySetCloningEnabled Method
Set cloning enabled flag for this region.

Namespace: GemStone.GemFire.Cache
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
public RegionFactory SetCloningEnabled(
	bool cloningEnabled
)

Parameters

cloningEnabled
Type: SystemBoolean
if true, clone old value before applying delta so that in-place change would not occour..

Return Value

Type: RegionFactory
the 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