Apache Geode Native .NET Reference 1.15.0
|
An object in a region that represents an entry, that is, a key-value pair. More...
#include <RegionEntry.hpp>
Properties | |
bool | IsDestroyed [get] |
True if this entry has been destroyed. More... | |
TKey | Key [get] |
Returns the key for this entry. More... | |
IRegion< TKey, TValue >^ | Region [get] |
Returns the region that contains this entry. More... | |
Apache::Geode::Client::CacheStatistics^ | Statistics [get] |
Returns the statistics for this entry. More... | |
TValue | Value [get] |
Returns the value of this entry in the local cache. More... | |
An object in a region that represents an entry, that is, a key-value pair.
This object's operations are not distributed, do not acquire any locks, and do not affect CacheStatistics
.
Unless otherwise noted, all of these methods throw a CacheClosedException
if the cache is closed at the time of invocation, or an EntryDestroyedException
if the entry has been destroyed.
Call IsDestroyed to see if an entry has already been destroyed.
|
get |
True if this entry has been destroyed.
Does not throw a EntryDestroyedException
if this entry has been destroyed.
CacheClosedException | if the cache is closed at the time of invocation |
|
get |
Returns the key for this entry.
CacheClosedException | if the cache is closed at the time of invocation |
EntryDestroyedException | if the entry has been destroyed |
|
get |
Returns the region that contains this entry.
CacheClosedException | if the cache is closed at the time of invocation |
EntryDestroyedException | if the entry has been destroyed |
|
get |
Returns the statistics for this entry.
StatisticsDisabledException | if statistics have been disabled for this region |
|
get |
Returns the value of this entry in the local cache.
Does not invoke an ICacheLoader
, does not do a netSearch, netLoad, etc.
CacheClosedException | if the cache is closed at the time of invocation |
EntryDestroyedException | if the entry has been destroyed |