Package | Description |
---|---|
com.gemstone.gemfire.cache |
Provides an implementation of distributed object caching that
can leverage GemFire's distribution capabilities.
|
Modifier and Type | Method and Description |
---|---|
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.invalidate(Object key)
Invalidates the entry with the specified key.
|
void |
Region.invalidate(Object key,
Object aCallbackArgument)
Invalidates the entry with the specified key,
and provides a user-defined argument to the
CacheListener . |
void |
Region.localDestroy(Object key)
Destroys the value with the specified key in the local cache only,
No
CacheWriter is
invoked. |
void |
Region.localDestroy(Object key,
Object aCallbackArgument)
Destroys the value with the specified key in the local cache
only, and provides a user-defined
parameter object to the
CacheListener , if any. |
void |
Region.localInvalidate(Object key)
Invalidates the value with the specified key in the local cache only.
|
void |
Region.localInvalidate(Object key,
Object aCallbackArgument)
Invalidates the value with the specified key in the local cache only,
and provides a user-defined argument to the
CacheListener . |
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.