Package | Description |
---|---|
com.gemstone.gemfire.cache |
Provides an implementation of distributed object caching that
can leverage GemFire's distribution capabilities.
|
com.gemstone.gemfire.cache.util |
Provides utilities for use with the Caching API in the
com.gemstone.gemfire.cache.util package. |
Modifier and Type | Method and Description |
---|---|
void |
CacheWriter.beforeCreate(EntryEvent<K,V> event)
Called before an entry is created.
|
void |
CacheWriter.beforeDestroy(EntryEvent<K,V> event)
Called before an entry is destroyed.
|
void |
CacheWriter.beforeRegionClear(RegionEvent<K,V> event)
Called before a region is cleared.
|
void |
CacheWriter.beforeRegionDestroy(RegionEvent<K,V> event)
Called before a region is destroyed.
|
void |
CacheWriter.beforeUpdate(EntryEvent<K,V> event)
Called before an entry is updated.
|
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. |
void |
Region.create(K key,
V value)
Creates a new entry in this region with the specified key and value.
|
void |
Region.create(K key,
V value,
Object aCallbackArgument)
Creates a new entry in this region with the specified key and value,
providing a user-defined parameter
object to any
CacheWriter invoked in the process. |
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. |
V |
Region.destroy(Object key)
Destroys the entry with the specified key.
|
V |
Region.destroy(Object key,
Object aCallbackArgument)
Destroys the entry with the specified key, and provides a user-defined
parameter object to any
CacheWriter invoked in the process. |
void |
Region.destroyRegion()
Destroys the whole region.
|
void |
Region.destroyRegion(Object aCallbackArgument)
Destroys the whole region and provides a user-defined parameter
object to any
CacheWriter invoked in the process. |
void |
GemFireCache.loadCacheXml(InputStream is)
Loads the cache configuration described in a declarative caching XML
file into this cache.
|
void |
Region.loadSnapshot(InputStream inputStream)
Deprecated.
as of 7.0 use
Region.getSnapshotService() |
V |
Region.put(K key,
V value)
Places a new value into an entry in this region with the specified key.
|
V |
Region.put(K key,
V value,
Object aCallbackArgument)
Places a new value into an entry in this region with the specified key,
providing a user-defined parameter
object to any
CacheWriter invoked in the process. |
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 | Class and Description |
---|---|
class |
BridgeWriterException
Deprecated.
as of 5.7 use
pools instead. |
Modifier and Type | Method and Description |
---|---|
void |
BridgeWriter.beforeCreate(EntryEvent event)
Deprecated.
Called before an entry is created.
|
void |
CacheWriterAdapter.beforeCreate(EntryEvent<K,V> event) |
void |
BridgeWriter.beforeDestroy(EntryEvent event)
Deprecated.
Called before an entry is destroyed.
|
void |
CacheWriterAdapter.beforeDestroy(EntryEvent<K,V> event) |
void |
BridgeWriter.beforeRegionClear(RegionEvent event)
Deprecated.
Called before a region is cleared.
|
void |
CacheWriterAdapter.beforeRegionClear(RegionEvent<K,V> event) |
void |
BridgeWriter.beforeRegionDestroy(RegionEvent event)
Deprecated.
Called before a region is destroyed.
|
void |
CacheWriterAdapter.beforeRegionDestroy(RegionEvent<K,V> event) |
void |
BridgeWriter.beforeUpdate(EntryEvent event)
Deprecated.
Called before an entry is updated.
|
void |
CacheWriterAdapter.beforeUpdate(EntryEvent<K,V> event) |
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.