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 |
---|---|
SystemMemberRegion |
SystemMemberCache.createRegion(String name,
RegionAttributes attrs)
Deprecated.
Creates a root
Region in this cache. |
SystemMemberRegion |
SystemMemberRegion.createSubregion(String name,
RegionAttributes attrs)
Deprecated.
Creates a subregion of this region.
|
SystemMemberRegion |
SystemMemberCache.createVMRegion(String name,
RegionAttributes attrs)
Deprecated.
as of GemFire 5.0, use
SystemMemberCache.createRegion(java.lang.String, com.gemstone.gemfire.cache.RegionAttributes) instead |
Modifier and Type | Method and Description |
---|---|
RegionAttributes<K,V> |
AttributesFactory.create()
Deprecated.
Creates a
RegionAttributes with the current settings. |
RegionAttributes<K,V> |
AttributesFactory.createRegionAttributes()
Deprecated.
as of GemFire 5.0, use
AttributesFactory.create() instead |
RegionAttributes<K,V> |
Region.getAttributes()
Returns the
RegionAttributes for this region. |
<K,V> RegionAttributes<K,V> |
GemFireCache.getRegionAttributes(String id)
Returns the
RegionAttributes with the given
id or null if no
RegionAttributes with that id exists. |
Modifier and Type | Method and Description |
---|---|
<K,V> Map<String,RegionAttributes<K,V>> |
GemFireCache.listRegionAttributes()
Returns an unmodifiable mapping of ids to region attributes.
|
Modifier and Type | Method and Description |
---|---|
<K,V> Region<K,V> |
Cache.createRegion(String name,
RegionAttributes<K,V> aRegionAttributes)
Deprecated.
as of 6.5 use
Cache.createRegionFactory(RegionAttributes) instead |
<K,V> RegionFactory<K,V> |
Cache.createRegionFactory(RegionAttributes<K,V> regionAttributes)
Creates a
RegionFactory for creating a Region from
the given regionAttributes |
<SK,SV> Region<SK,SV> |
Region.createSubregion(String subregionName,
RegionAttributes<SK,SV> aRegionAttributes)
Deprecated.
|
<K,V> Region<K,V> |
Cache.createVMRegion(String name,
RegionAttributes<K,V> aRegionAttributes)
Deprecated.
as of GemFire 5.0, use
Cache.createRegion(java.lang.String, com.gemstone.gemfire.cache.RegionAttributes<K, V>) instead. |
<K,V> void |
GemFireCache.setRegionAttributes(String id,
RegionAttributes<K,V> attrs)
Sets the
id of the given
RegionAttributes . |
static void |
AttributesFactory.validateAttributes(RegionAttributes<?,?> attrs)
Deprecated.
Validates that the attributes are consistent with each other.
|
Constructor and Description |
---|
AttributesFactory(RegionAttributes<K,V> regionAttributes)
Deprecated.
Creates a new instance of AttributesFactory ready to create a
RegionAttributes with the same settings as those in the
specified RegionAttributes . |
RegionFactory(Properties distributedSystemProperties,
RegionAttributes<K,V> regionAttributes)
Deprecated.
as of 6.5 use
CacheFactory.CacheFactory(Properties) and Cache.createRegionFactory(RegionAttributes) instead. |
RegionFactory(RegionAttributes<K,V> regionAttributes)
Deprecated.
as of 6.5 use
Cache.createRegionFactory(RegionAttributes) instead. |
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.