Package | Description |
---|---|
com.gemstone.gemfire.admin |
Provides an API for administering various GemFire components such
as a GemFire distributed
system, and processes that host GemFire Caches.
|
com.gemstone.gemfire.cache |
Provides an implementation of distributed object caching that
can leverage GemFire's distribution capabilities.
|
Modifier and Type | Method and Description |
---|---|
Scope |
SystemMemberRegion.getScope()
Deprecated.
/**
Returns the Scope in this region's attributes.
|
Modifier and Type | Field and Description |
---|---|
static Scope |
Scope.DISTRIBUTED_ACK
The region or cached object with this attribute is scoped
to the distributed cached system; any distributed
operation will not return until all the remote acknowledgments
come back.
|
static Scope |
Scope.DISTRIBUTED_NO_ACK
The region or cached object with this attribute is scoped
to the distributed cached system; any distributed
operation will return without waiting for the remote acknowledgment.
|
static Scope |
Scope.GLOBAL
The region or cached object with this attribute is scoped
to the distributed cached system; locking is used
for all distributed operations on entries
to guarantee consistency across the distributed caches.
|
static Scope |
Scope.LOCAL
The region with this attribute is scoped to this JVM only.
|
Modifier and Type | Method and Description |
---|---|
static Scope |
Scope.fromOrdinal(int ordinal)
Return the Scope represented by specified ordinal
|
static Scope |
Scope.fromString(String scope)
Parse the given string into a Scope
|
Scope |
RegionAttributes.getScope()
Returns the scope of the region.
|
Modifier and Type | Method and Description |
---|---|
void |
AttributesFactory.setScope(Scope scopeType)
Deprecated.
Sets the scope for the next
RegionAttributes created. |
RegionFactory<K,V> |
RegionFactory.setScope(Scope scopeType)
Sets the scope for the next
RegionAttributes created. |
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.