Package | Description |
---|---|
com.gemstone.gemfire.cache |
Provides an implementation of distributed object caching that
can leverage GemFire's distribution capabilities.
|
com.gemstone.gemfire.cache.client |
The
com.gemstone.gemfire.cache.client package provides APIs used
for client connectivity and caching. |
Modifier and Type | Method and Description |
---|---|
Cache |
CacheFactory.create()
Creates a new cache that uses the configured distributed system.
|
static Cache |
CacheFactory.create(DistributedSystem system)
Deprecated.
as of 6.5 use
CacheFactory.CacheFactory(Properties) instead. |
Region<K,V> |
RegionFactory.create(String name)
Creates a region with the given name in this factory's
Cache
using the configuration contained in this factory. |
<K,V> Region<K,V> |
Cache.createRegion(String name,
RegionAttributes<K,V> aRegionAttributes)
Deprecated.
as of 6.5 use
Cache.createRegionFactory(RegionAttributes) instead |
Region<K,V> |
RegionFactory.createSubregion(Region<?,?> parent,
String name)
Creates a sub-region in the
Cache using
the configuration contained in this RegionFactory. |
<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. |
void |
GemFireCache.loadCacheXml(InputStream is)
Loads the cache configuration described in a declarative caching XML
file into this cache.
|
Constructor and Description |
---|
RegionFactory()
Deprecated.
as of 6.5 use
Cache.createRegionFactory() instead. |
RegionFactory(Properties distributedSystemProperties)
Deprecated.
as of 6.5 use
CacheFactory.CacheFactory(Properties) and Cache.createRegionFactory() instead. |
RegionFactory(Properties distributedSystemProperties,
RegionAttributes<K,V> regionAttributes)
Deprecated.
as of 6.5 use
CacheFactory.CacheFactory(Properties) and Cache.createRegionFactory(RegionAttributes) instead. |
RegionFactory(Properties distributedSystemProperties,
String regionAttributesId)
Deprecated.
as of 6.5 use
CacheFactory.CacheFactory(Properties) and Cache.createRegionFactory(String) instead. |
RegionFactory(RegionAttributes<K,V> regionAttributes)
Deprecated.
as of 6.5 use
Cache.createRegionFactory(RegionAttributes) instead. |
RegionFactory(String regionAttributesId)
Deprecated.
as of 6.5 use
Cache.createRegionFactory(String) instead. |
Modifier and Type | Method and Description |
---|---|
Region<K,V> |
ClientRegionFactory.create(String name)
Creates a region in the
ClientCache using
the configuration contained in this ClientRegionFactory. |
Region<K,V> |
ClientRegionFactory.createSubregion(Region<?,?> parent,
String name)
Creates a sub-region in the
ClientCache using
the configuration contained in this ClientRegionFactory. |
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.