Note: This API is now obsolete.
Enumerated type for region distribution scope.
Contains values for setting Scope.
Local scope is invalid (it is a non-native client local region), and
DistributedAck and DistributedNoAck have the same behavior.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax[ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")]
public enum ScopeType
<ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")>
Public Enumeration ScopeType
[ObsoleteAttribute(L"Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")]
public enum class ScopeType
[<ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")>]
type ScopeType
Members
| Member name | Value | Description |
---|
| Local | 0 | No distribution. |
| DistributedNoAck | 1 |
Distribute without waiting for acknowledgement.
|
| DistributedAck | 2 |
Distribute and wait for all peers to acknowledge.
|
| Global | 3 |
Distribute with full interprocess synchronization
-- NOT IMPLEMENTED.
|
| Invalid | 4 | Invalid scope. |
See Also