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. |
com.gemstone.gemfire.cache.wan |
Modifier and Type | Method and Description |
---|---|
List<EntryEvent<?,?>> |
TransactionEvent.getCreateEvents()
Deprecated.
as of GemFire 5.0, use
TransactionEvent.getEvents() instead |
List<EntryEvent<?,?>> |
TransactionEvent.getDestroyEvents()
Deprecated.
as of GemFire 5.0, use
TransactionEvent.getEvents() instead |
List<EntryEvent<?,?>> |
TransactionEvent.getInvalidateEvents()
Deprecated.
as of GemFire 5.0, use
TransactionEvent.getEvents() instead |
List<EntryEvent<?,?>> |
TransactionEvent.getPutEvents()
Deprecated.
as of GemFire 5.0, use
TransactionEvent.getEvents() instead |
Modifier and Type | Method and Description |
---|---|
void |
CacheListener.afterCreate(EntryEvent<K,V> event)
Handles the event of new key being added to a region.
|
void |
CacheListener.afterDestroy(EntryEvent<K,V> event)
Handles the event of an entry being destroyed.
|
void |
CacheListener.afterInvalidate(EntryEvent<K,V> event)
Handles the event of an entry's value being invalidated.
|
void |
CacheListener.afterUpdate(EntryEvent<K,V> event)
Handles the event of an entry's value being modified in a region.
|
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.beforeUpdate(EntryEvent<K,V> event)
Called before an entry is updated.
|
Modifier and Type | Interface and Description |
---|---|
interface |
TimestampedEntryEvent
TimestampedEntryEvent is an EntryEvent that has additional information provided
to GatewayConflictResolver plugins.
|
Modifier and Type | Method and Description |
---|---|
void |
CacheListenerAdapter.afterCreate(EntryEvent<K,V> event) |
void |
CacheListenerAdapter.afterDestroy(EntryEvent<K,V> event) |
void |
CacheListenerAdapter.afterInvalidate(EntryEvent<K,V> event) |
void |
CacheListenerAdapter.afterUpdate(EntryEvent<K,V> event) |
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.beforeUpdate(EntryEvent event)
Deprecated.
Called before an entry is updated.
|
void |
CacheWriterAdapter.beforeUpdate(EntryEvent<K,V> event) |
Modifier and Type | Method and Description |
---|---|
Object |
GatewayEventSubstitutionFilter.getSubstituteValue(EntryEvent<K,V> event)
Return the substitute value to be stored in the
GatewayQueueEvent and enqueued in the RegionQueue |
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.