VMware Tanzu GemFire Native C++ Reference 10.2.7
|
An application plug-in that can be installed on the region. More...
#include <CacheWriter.hpp>
Public Member Functions | |
virtual bool | beforeCreate (const EntryEvent &event) |
Called before an entry is created. More... | |
virtual bool | beforeDestroy (const EntryEvent &event) |
Called before an entry is destroyed. More... | |
virtual bool | beforeRegionClear (const RegionEvent &event) |
called before this region is cleared More... | |
virtual bool | beforeRegionDestroy (const RegionEvent &event) |
called before this region is destroyed More... | |
virtual bool | beforeUpdate (const EntryEvent &event) |
Called before an entry is updated. More... | |
virtual void | close (Region &rp) |
Called when the region containing this callback is destroyed, when the cache is closed. More... | |
An application plug-in that can be installed on the region.
Defines methods that are called BEFORE entry modification. A distributed region will typically have a single cache writer. If the application is designed such that all or most updates to a region occurs on a node, it is desirable to have the cache writer for the region to be installed at that node.
Cache writer invocations are initiated by the node where the entry or region modification occurs. If there is a local cache writer on the node where the change occurs, that is invoked. If there is no local cache writer , the system knows which of the nodes that have the region defined have a cache writer defined.
Note that cache writer callbacks are synchronous callbacks and have the ability to veto the cache update. Since cache writer invocations require communications over the network, (especially if they are not colocated on the nodes where the change occurs) the use of cache writers presents a performance penalty.
A user-defined object defined in the RegionAttributes
that is called synchronously before a region or entry in the cache is modified.
The typical use for a CacheWriter
is to update a database. Application writers should implement these methods to execute application-specific behavior before the cache is modified.
Before the region is updated via a put, create, or destroy operation, Geode will call a CacheWriter
that is installed anywhere in any participating cache for that region, preferring a local CacheWriter
if there is one. Usually there will be only one CacheWriter
in the distributed system. If there are multiple CacheWriter
s available in the distributed system, the Geode implementation always prefers one that is stored locally, or else picks one arbitrarily. In any case, only one CacheWriter
will be invoked.
The CacheWriter
is capable of aborting the update to the cache by throwing a CacheWriterException
. This exception or any runtime exception thrown by the CacheWriter
will abort the operation, and the exception will be propagated to the initiator of the operation, regardless of whether the initiator is in the same process as the CacheWriter
.
|
virtual |
Called before an entry is created.
Entry creation is initiated by a create
, a put
, or a get
. The CacheWriter
can determine whether this value comes from a get
or not from EntryEvent::isLoad
. The entry being created may already exist in the local cache where this CacheWriter
is installed, but it does not yet exist in the cache where the operation was initiated.
event | EntryEvent denotes the event object associated with creating the entry |
|
virtual |
Called before an entry is destroyed.
The entry being destroyed may or may not exist in the local cache where the CacheWriter is installed. This method is not called as a result of expiration or Region::localDestroyRegion
.
event | EntryEvent denotes the event object associated with destroying the entry |
|
virtual |
called before this region is cleared
event | EntryEvent denotes the event object associated with clearing the region |
|
virtual |
called before this region is destroyed
event | EntryEvent denotes the event object associated with destroying the region |
|
virtual |
Called before an entry is updated.
The entry update is initiated by a put
or a get
that causes the loader to update an existing entry. The entry previously existed in the cache where the operation was initiated, although the old value may have been nullptr. The entry being updated may or may not exist in the local cache where the CacheWriter is installed.
event | EntryEvent denotes the event object associated with updating the entry |
|
virtual |
Called when the region containing this callback is destroyed, when the cache is closed.
Implementations should clean up any external resources, such as database connections. Any runtime exceptions this method throws will be logged.
It is possible for this method to be called multiple times on a single callback instance, so implementations must be tolerant of this.