VMware Tanzu GemFire Native C++ Reference 10.2.7
|
This class manages subregions and cached data. More...
#include <Region.hpp>
Inherits std::enable_shared_from_this< Region >.
Public Member Functions | |
virtual void | clear (const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Removes all entries from this region and provides a user-defined parameter object to any CacheWriter or CacheListener invoked in the process. More... | |
template<class KEYTYPE > | |
bool | containsKey (const KEYTYPE &key) const |
Convenience method allowing key to be a const char* This operations checks for the key in the local cache . More... | |
virtual bool | containsKey (const std::shared_ptr< CacheableKey > &keyPtr) const =0 |
Only the client's cache is searched for the key. More... | |
virtual bool | containsKeyOnServer (const std::shared_ptr< CacheableKey > &keyPtr) const =0 |
The cache of the server, to which it is connected with, is searched for the key to see if the key is present. More... | |
template<class KEYTYPE > | |
bool | containsValueForKey (const KEYTYPE &key) const |
Convenience method allowing key to be a const char* This operations checks for the value in the local cache . More... | |
virtual bool | containsValueForKey (const std::shared_ptr< CacheableKey > &keyPtr) const =0 |
This operations checks for the value in the local cache . More... | |
template<class KEYTYPE > | |
void | create (const KEYTYPE &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
template<class KEYTYPE , class VALUETYPE > | |
void | create (const KEYTYPE &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing both key and value to be a const char*. More... | |
virtual void | create (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
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. More... | |
template<class VALUETYPE > | |
void | create (const std::shared_ptr< CacheableKey > &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing value to be a const char*. More... | |
virtual std::shared_ptr< Region > | createSubregion (const std::string &subregionName, RegionAttributes aRegionAttributes)=0 |
Creates a subregion with the specified attributes. More... | |
template<class KEYTYPE > | |
void | destroy (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
virtual void | destroy (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Destroys the entry with the specified key, and provides a user-defined parameter object to any CacheWriter invoked in the process. More... | |
virtual void | destroyRegion (const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Destroys the whole region and provides a user-defined parameter object to any CacheWriter invoked in the process. More... | |
virtual bool | existsValue (const std::string &predicate, std::chrono::milliseconds timeout=DEFAULT_QUERY_RESPONSE_TIMEOUT)=0 |
Executes the query on the server based on the predicate and returns whether any result exists. More... | |
template<class KEYTYPE > | |
std::shared_ptr< Cacheable > | get (const KEYTYPE &key, const std::shared_ptr< Serializable > &callbackArg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
virtual std::shared_ptr< Cacheable > | get (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Returns the value associated with the specified key, passing the callback argument to any cache loaders that are invoked in the operation. More... | |
virtual HashMapOfCacheable | getAll (const std::vector< std::shared_ptr< CacheableKey > > &keys, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Gets values for an array of keys from the local cache or server. More... | |
virtual const RegionAttributes & | getAttributes () const =0 |
Return the RegionAttributes for this region. More... | |
virtual std::shared_ptr< AttributesMutator > | getAttributesMutator () const =0 |
Return the a mutator object for changing a subset of the region attributes. More... | |
template<class KEYTYPE > | |
std::shared_ptr< RegionEntry > | getEntry (const KEYTYPE &key) |
Convenience method allowing key to be a const char*. More... | |
virtual std::shared_ptr< RegionEntry > | getEntry (const std::shared_ptr< CacheableKey > &key)=0 |
Return the meta-object RegionEntry for key. More... | |
virtual const std::string & | getFullPath () const =0 |
return the full path of the region as can be used to lookup the region from Cache::getRegion. More... | |
virtual std::vector< std::shared_ptr< CacheableKey > > | getInterestList () const =0 |
Returns the list of keys on which this client is interested and will be notified of changes. More... | |
virtual std::vector< std::shared_ptr< CacheableString > > | getInterestListRegex () const =0 |
Returns the list of regular expresssions on which this client is interested and will be notified of changes. More... | |
virtual const std::string & | getName () const =0 |
Public Methods. More... | |
virtual std::shared_ptr< Region > | getParentRegion () const =0 |
Returns the parent region, or nullptr if a root region. More... | |
virtual RegionService & | getRegionService () const =0 |
Returns the cache associated with this region. More... | |
virtual std::shared_ptr< Region > | getSubregion (const std::string &path)=0 |
Returns the subregion identified by the path, nullptr if no such subregion. More... | |
template<class KEYTYPE > | |
void | invalidate (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
virtual void | invalidate (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Invalidates the entry with the specified key, and provides a user-defined argument to the CacheListener . More... | |
virtual void | invalidateRegion (const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Invalidates this region. More... | |
virtual std::vector< std::shared_ptr< CacheableKey > > | keys ()=0 |
Return all the keys in the local process for this region. More... | |
virtual void | localClear (const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Removes all entries from this region and provides a user-defined parameter object to any CacheWriter or CacheListener invoked in the process. More... | |
template<class KEYTYPE > | |
void | localCreate (const KEYTYPE &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
template<class KEYTYPE , class VALUETYPE > | |
void | localCreate (const KEYTYPE &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing both key and value to be a const char*. More... | |
virtual void | localCreate (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Creates a new entry in this region with the specified key and value in the local cache only, providing a user-defined parameter object to any CacheWriter invoked in the process. More... | |
template<class VALUETYPE > | |
void | localCreate (const std::shared_ptr< CacheableKey > &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing value to be a const char*. More... | |
template<class KEYTYPE > | |
void | localDestroy (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
virtual void | localDestroy (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Destroys the entry with the specified key in the local cache only, and provides a user-defined parameter object to any CacheWriter invoked in the process. More... | |
virtual void | localDestroyRegion (const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Destroys the whole region and provides a user-defined parameter object to any CacheWriter invoked in the process. More... | |
template<class KEYTYPE > | |
void | localInvalidate (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
virtual void | localInvalidate (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Invalidates the entry with the specified key in the local cache only, and provides a user-defined argument to the CacheListener . More... | |
virtual void | localInvalidateRegion (const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Invalidates this region. More... | |
template<class KEYTYPE > | |
void | localPut (const KEYTYPE &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
template<class KEYTYPE , class VALUETYPE > | |
void | localPut (const KEYTYPE &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing both key and value to be a const char*. More... | |
virtual void | localPut (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Places a new value into an entry in this region with the specified key in the local cache only, providing a user-defined parameter object to any CacheWriter invoked in the process. More... | |
template<class VALUETYPE > | |
void | localPut (const std::shared_ptr< CacheableKey > &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing value to be a const char*. More... | |
template<class KEYTYPE > | |
bool | localRemove (const KEYTYPE &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
template<class KEYTYPE , class VALUETYPE > | |
bool | localRemove (const KEYTYPE &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing both key and value to be a const char*. More... | |
virtual bool | localRemove (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Removes the entry with the specified key and value in the local cache only, and provides a user-defined parameter object to any CacheWriter invoked in the process. More... | |
template<class VALUETYPE > | |
bool | localRemove (const std::shared_ptr< CacheableKey > &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing value to be a const char*. More... | |
template<class KEYTYPE > | |
bool | localRemoveEx (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
virtual bool | localRemoveEx (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Removes the entry with the specified key in the local cache only, and provides a user-defined parameter object to any CacheWriter invoked in the process. More... | |
template<class KEYTYPE > | |
void | put (const KEYTYPE &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
template<class KEYTYPE , class VALUETYPE > | |
void | put (const KEYTYPE &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing both key and value to be a const char*. More... | |
virtual void | put (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
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. More... | |
template<class VALUETYPE > | |
void | put (const std::shared_ptr< CacheableKey > &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing value to be a const char*. More... | |
virtual void | putAll (const HashMapOfCacheable &map, std::chrono::milliseconds timeout=DEFAULT_RESPONSE_TIMEOUT, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Places a set of new values in this region with the specified keys given as a map of key/value pairs. More... | |
virtual std::shared_ptr< SelectResults > | query (const std::string &predicate, std::chrono::milliseconds timeout=DEFAULT_QUERY_RESPONSE_TIMEOUT)=0 |
Executes the query on the server based on the predicate. More... | |
virtual void | registerAllKeys (bool isDurable=false, bool getInitialValues=false, bool receiveValues=true)=0 |
Registers to get updates for all keys from the server. More... | |
virtual void | registerKeys (const std::vector< std::shared_ptr< CacheableKey > > &keys, bool isDurable=false, bool getInitialValues=false, bool receiveValues=true)=0 |
Registers an array of keys for getting updates from the server. More... | |
virtual void | registerRegex (const std::string ®ex, bool isDurable=false, bool getInitialValues=false, bool receiveValues=true)=0 |
Registers a regular expression to match with keys to get updates from the server. More... | |
template<class KEYTYPE > | |
bool | remove (const KEYTYPE &key) |
Convenience method allowing both key and value to be a const char*. More... | |
template<class KEYTYPE > | |
bool | remove (const KEYTYPE &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
template<class KEYTYPE , class VALUETYPE > | |
bool | remove (const KEYTYPE &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing both key and value to be a const char*. More... | |
virtual bool | remove (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Cacheable > &value, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Removes the entry with the specified key, value and provides a user-defined parameter object to any CacheWriter invoked in the process. More... | |
template<class VALUETYPE > | |
bool | remove (const std::shared_ptr< CacheableKey > &key, const VALUETYPE &value, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing value to be a const char*. More... | |
virtual void | removeAll (const std::vector< std::shared_ptr< CacheableKey > > &keys, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Removes all of the entries for the specified keys from this region. More... | |
template<class KEYTYPE > | |
bool | removeEx (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
Convenience method allowing key to be a const char*. More... | |
virtual bool | removeEx (const std::shared_ptr< CacheableKey > &key, const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
Removes the entry with the specified key and provides a user-defined parameter object to any CacheWriter invoked in the process. More... | |
virtual std::shared_ptr< Serializable > | selectValue (const std::string &predicate, std::chrono::milliseconds timeout=DEFAULT_QUERY_RESPONSE_TIMEOUT)=0 |
Executes the query on the server based on the predicate and returns a single result value. More... | |
virtual std::vector< std::shared_ptr< CacheableKey > > | serverKeys ()=0 |
Return the set of keys defined in the server process associated to this client and region. More... | |
virtual uint32_t | size ()=0 |
Get the size of region. More... | |
virtual std::vector< std::shared_ptr< Region > > | subregions (const bool recursive)=0 |
Populates the passed in std::vector<std::shared_ptr<Region>> with subregions of the current region. More... | |
virtual void | unregisterAllKeys ()=0 |
Registers to get updates for all keys from the server. More... | |
virtual void | unregisterKeys (const std::vector< std::shared_ptr< CacheableKey > > &keys)=0 |
Unregisters an array of keys to stop getting updates for them. More... | |
virtual void | unregisterRegex (const std::string ®ex)=0 |
Unregisters a regular expression to stop getting updates for keys from the server. More... | |
virtual std::vector< std::shared_ptr< Cacheable > > | values ()=0 |
Return all values in the local process for this region. More... | |
This class manages subregions and cached data.
Each region can contain multiple subregions and entries for data. Regions provide a hierachical name space within the cache. Also, a region can be used to group cached objects for management purposes.
Entries managed by the region are key-value pairs. A set of region attributes is associated with the region when it is created.
The Region interface basically contains two set of APIs: Region management APIs and (potentially) distributed operations on entries. Non-distributed operations on entries are provided by RegionEntry
.
Each Cache
defines regions called the root regions. User applications can use the root regions to create subregions for isolated name space and object grouping.
A region's name can be any String, except that it should not contain the region name separator, a forward slash (/).
Regions
can be referenced by a relative path name from any region higher in the hierarchy in Region::getSubregion
. You can get the relative path from the root region with Region::getFullPath
. The name separator is used to concatenate all the region names together from the root, starting with the root's subregions.
|
pure virtual |
Removes all entries from this region and provides a user-defined parameter object to any CacheWriter
or CacheListener
invoked in the process.
|
inline |
Convenience method allowing key to be a const char* This operations checks for the key in the local cache .
It is not propagated to the Geode cache server to which it is connected.
|
pure virtual |
Only the client's cache is searched for the key.
It does not go to the java server to which it is connected with.
|
pure virtual |
The cache of the server, to which it is connected with, is searched for the key to see if the key is present.
UnsupportedOperationException | if the region's scope is ScopeType::LOCAL. |
|
inline |
Convenience method allowing key to be a const char* This operations checks for the value in the local cache .
It is not propagated to the Geode cache server to which it is connected.
|
pure virtual |
This operations checks for the value in the local cache .
It is not propagated to the Geode cache server to which it is connected.
|
inline |
Convenience method allowing key to be a const char*.
|
inline |
Convenience method allowing both key and value to be a const char*.
|
pure virtual |
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.
The same parameter is also passed to the CacheListener
, if one is defined for this Region
, invoked in the process. The new entry is propogated to the java server also to which it is connected with.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
If remote server put fails throwing back a CacheServerException
or security exception, then local put is tried to rollback. However, if the entry has overflowed/evicted/expired then the rollback is aborted since it may be due to a more recent notification or update by another thread.
key | the key smart pointer for which to create the entry in this region. |
value | the value for the new entry, which may be nullptr meaning the new entry starts as if it had been locally invalidated. |
aCallbackArgument | a user-defined parameter to pass to callback events triggered by this method. Can be nullptr. Should be serializable if passed to remote callback events |
IllegalArgumentException | if key is nullptr or if the key, value, or aCallbackArgument do not meet serializability requirements |
CacheWriterException | if CacheWriter aborts the operation |
CacheListenerException | if CacheListener throws an exception |
RegionDestroyedException | if region is no longer valid |
CacheServerException | If an exception is received from the Java cache server. Only for Native Client regions. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when an unregistered typeId is received in the reply or reply is not well formed. More information can be found in the log. |
TimeoutException | if the operation timed out |
OutOfMemoryException | if no memory for new entry |
EntryExistsException | if an entry with this key already exists |
|
inline |
Convenience method allowing value to be a const char*.
|
pure virtual |
Creates a subregion with the specified attributes.
|
inline |
Convenience method allowing key to be a const char*.
|
pure virtual |
Destroys the entry with the specified key, and provides a user-defined parameter object to any CacheWriter
invoked in the process.
The same parameter is also passed to the CacheListener
, if one is defined for this Region
, invoked in the process. Destroy removes not only the value, but also the key and entry from this region.
The destroy is propogated to the Geode cache server to which it is connected with. If the destroy fails due to an exception on server throwing back CacheServerException
or security exception, then the local entry is still destroyed.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
key | the key of the entry to destroy |
aCallbackArgument | a user-defined parameter to pass to callback events triggered by this method. Can be nullptr. If it is sent on the wire, it has to be Serializable. |
IllegalArgumentException | if key is nullptr |
CacheWriterException | if CacheWriter aborts the operation |
CacheListenerException | if CacheListener throws an exception |
CacheServerException | If an exception is received from the Geode cache server. Only for Native Client regions. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when an unregistered typeId is received in the reply or reply is not well formed. More information can be found in the log. |
TimeoutException | if the operation timed out |
RegionDestroyedException | if the region is destroyed. |
EntryNotFoundException | if the entry does not exist in this region. |
|
pure virtual |
Destroys the whole region and provides a user-defined parameter object to any CacheWriter
invoked in the process.
Destroy cascades to all entries and subregions. After the destroy, this region object cannot be used any more. Any attempt to use this region object will get a RegionDestroyedException
exception.
The region destroy not only destroys the local region but also destroys the server region. However, if server region destroy fails throwing back CacheServerException
or security exception, the local region is still destroyed.
aCallbackArgument | a user-defined parameter to pass to callback events triggered by this call. Can be nullptr. If it is sent on the wire, it has to be Serializable. |
CacheWriterException | if CacheWriter aborts the operation; if this occurs some subregions may have already been successfully destroyed. |
CacheListenerException | if CacheListener throws an exception; if this occurs some subregions may have already been successfully invalidated |
CacheServerException | If an exception is received from the Java cache server. Only for Native Client regions. |
NotConnectedException | if not connected to the geode system because the client cannot establish usable connections to any of the servers given to it. For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when an unregistered typeId is received in the reply or reply is not well formed. More information can be found in the log. |
TimeoutException | if operation timed out |
|
pure virtual |
Executes the query on the server based on the predicate and returns whether any result exists.
Valid only for a Native Client region.
predicate | The query predicate (just the WHERE clause) or the entire query to execute. |
timeout | The time to wait for the response, optional. |
IllegalArgumentException | If timeout exceeds 2147483647ms. |
QueryException | if some query error occurred at the server. |
NotConnectedException | if a server connection error occurs. For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when the reply is not well formed. More information can be found in the log. |
TimeoutException | if operation timed out |
CacheClosedException | if the cache has been closed |
|
inline |
Convenience method allowing key to be a const char*.
|
pure virtual |
Returns the value associated with the specified key, passing the callback argument to any cache loaders that are invoked in the operation.
If the value is not present locally then it is requested from the java server. If even that is unsuccessful then a local CacheLoader will be invoked if there is one. The value returned by get is not copied, so multi-threaded applications should not modify the value directly, but should use the update methods.
Updates the CacheStatistics::getLastAccessedTime
, CacheStatistics::getHitCount
, CacheStatistics::getMissCount
, and CacheStatistics::getLastModifiedTime
(if a new value is loaded) for this region and the entry.
key | whose associated value is to be returned. The key Object must implement the equals and hashCode methods. |
aCallbackArgument | an argument passed into the CacheLoader if loader is used. If it is sent on the wire, it has to be Serializable. |
IllegalArgumentException | if key is nullptr or aCallbackArgument is not serializable and a remote CacheLoader needs to be invoked |
CacheLoaderException | if CacheLoader throws an exception |
CacheServerException | If an exception is received from the Java cache server. Only for Native Client regions. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it. For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when an unregistered typeId is received in the reply or reply is not well formed. More information can be found in the log. |
TimeoutException | if operation timed out |
RegionDestroyedException | if the method is called on a destroyed region |
|
pure virtual |
Gets values for an array of keys from the local cache or server.
If value for a key is not present locally then it is requested from the java server. The value returned is not copied, so multi-threaded applications should not modify the value directly, but should use the update methods.
Updates the CacheStatistics::getLastAccessedTime
, CacheStatistics::getHitCount
and CacheStatistics::getMissCount
for this region and the entry.
keys | the array of keys |
values | Output parameter that provides the map of keys to respective values. It is ignored if nullptr, and when nullptr then at least the addToLocalCache parameter should be true and caching should be enabled for the region to get values into the region otherwise an IllegalArgumentException is thrown. |
exceptions | Output parameter that provides the map of keys to any exceptions while obtaining the key. It is ignored if nullptr. |
aCallbackArgument | an argument that is passed to the callback functions. It may be nullptr. Must be serializable if this operation is distributed. |
IllegalArgumentException | If the array of keys is empty. Other invalid case is when the values parameter is nullptr, and either addToLocalCache is false or caching is disabled for this region. |
CacheServerException | If an exception is received from the Java cache server while processing the request. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the given servers For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
RegionDestroyedException | If region destroy is pending. |
TimeoutException | if operation timed out. |
UnknownException | For other exceptions. |
|
pure virtual |
Return the RegionAttributes for this region.
|
pure virtual |
Return the a mutator object for changing a subset of the region attributes.
RegionDestroyedException. |
|
inline |
Convenience method allowing key to be a const char*.
|
pure virtual |
Return the meta-object RegionEntry for key.
IllegalArgumentException,RegionDestroyedException. |
|
pure virtual |
return the full path of the region as can be used to lookup the region from Cache::getRegion.
The storage is backed by the region.
|
pure virtual |
Returns the list of keys on which this client is interested and will be notified of changes.
UnsupportedOperationException | if the region's scope is ScopeType::LOCAL. |
|
pure virtual |
Returns the list of regular expresssions on which this client is interested and will be notified of changes.
UnsupportedOperationException | if the region's scope is ScopeType::LOCAL. |
|
pure virtual |
Public Methods.
return single name of region. The storage is backed by the region.
|
pure virtual |
Returns the parent region, or nullptr if a root region.
RegionDestroyedException |
|
pure virtual |
Returns the cache
associated with this region.
|
pure virtual |
Returns the subregion identified by the path, nullptr if no such subregion.
|
inline |
Convenience method allowing key to be a const char*.
|
pure virtual |
Invalidates the entry with the specified key, and provides a user-defined argument to the CacheListener
.
Invalidate only removes the value from the entry, the key is kept intact. To completely remove the entry, destroy should be used. The invalidate is not propogated to the Geode cache server to which it is connected with.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
key | the key of the value to be invalidated |
aCallbackArgument | a user-defined parameter to pass to callback events triggered by this method. Can be nullptr. Should be serializable if passed to remote callback events |
IllegalArgumentException | if key is nullptr |
CacheListenerException | if CacheListener throws an exception |
EntryNotFoundException | if this entry does not exist in this region locally |
RegionDestroyedException | if the region is destroyed |
|
pure virtual |
Invalidates this region.
The invalidation will cascade to all the subregions and cached entries. After the invalidateRegion
, the region and the entries in it still exist. In order to remove all the entries and the region, destroyRegion
should be used.
aCallbackArgument | a user-defined parameter to pass to callback events triggered by this method. Can be nullptr. If it is sent on the wire, it has to be Serializable. |
CacheListenerException | if CacheListener throws an exception; if this occurs some subregions may have already been successfully invalidated |
RegionDestroyedException | if the region is no longer valid |
|
pure virtual |
Return all the keys in the local process for this region.
This includes keys for which the entry is invalid.
|
pure virtual |
Removes all entries from this region and provides a user-defined parameter object to any CacheWriter
or CacheListener
invoked in the process.
Clear will not be distributed to other caches.
|
inline |
Convenience method allowing key to be a const char*.
|
inline |
Convenience method allowing both key and value to be a const char*.
|
pure virtual |
Creates a new entry in this region with the specified key and value in the local cache only, providing a user-defined parameter object to any CacheWriter
invoked in the process.
The same parameter is also passed to the CacheListener
, if one is defined for this Region
, invoked in the process.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
key | the key smart pointer for which to create the entry in this region. |
value | the value for the new entry, which may be nullptr meaning the new entry starts as if it had been locally invalidated. |
aCallbackArgument | a user-defined parameter to pass to callback events triggered by this method. Can be nullptr. Should be serializable if passed to remote callback events |
IllegalArgumentException | if key or value is nullptr |
CacheWriterException | if CacheWriter aborts the operation |
CacheListenerException | if CacheListener throws an exception |
RegionDestroyedException | if region is no longer valid |
OutOfMemoryException | if no memory for new entry |
EntryExistsException | if an entry with this key already exists |
|
inline |
Convenience method allowing value to be a const char*.
|
inline |
Convenience method allowing key to be a const char*.
|
pure virtual |
Destroys the entry with the specified key in the local cache only, and provides a user-defined parameter object to any CacheWriter
invoked in the process.
The same parameter is also passed to the CacheListener
, if one is defined for this Region
, invoked in the process. Destroy removes not only the value but also the key and entry from this region.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
key | the key of the entry to destroy. |
aCallbackArgument | the callback for user to pass in, default is nullptr. |
IllegalArgumentException | if key is nullptr |
CacheWriterException | if CacheWriter aborts the operation |
CacheListenerException | if CacheListener throws an exception |
EntryNotFoundException | if the entry does not exist in this region locally |
|
pure virtual |
Destroys the whole region and provides a user-defined parameter object to any CacheWriter
invoked in the process.
Destroy cascades to all entries and subregions. After the destroy, this region object cannot be used any more. Any attempt to use this region object will get a RegionDestroyedException
exception. The region destroy is not distributed to other caches.
aCallbackArgument | a user-defined parameter to pass to callback events triggered by this call. Can be nullptr. If it is sent on the wire, it has to be Serializable. |
CacheWriterException | if CacheWriter aborts the operation; if this occurs some subregions may have already been successfully destroyed. |
CacheListenerException | if CacheListener throws an exception; if this occurs some subregions may have already been successfully invalidated |
|
inline |
Convenience method allowing key to be a const char*.
|
pure virtual |
Invalidates the entry with the specified key in the local cache only, and provides a user-defined argument to the CacheListener
.
Invalidate only removes the value from the entry, the key is kept intact. To completely remove the entry, destroy should be used.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
key | the key of the value to be invalidated |
aCallbackArgument | a user-defined parameter to pass to callback events triggered by this method. Can be nullptr. Should be serializable if passed to remote callback events |
IllegalArgumentException | if key is nullptr |
CacheListenerException | if CacheListener throws an exception |
EntryNotFoundException | if this entry does not exist in this region locally |
RegionDestroyedException | if the region is destroyed |
|
pure virtual |
Invalidates this region.
The invalidation will cascade to all the subregions and cached entries. After the invalidateRegion
, the region and the entries in it still exist. In order to remove all the entries and the region, destroyRegion
should be used. The region invalidate will not be distributed to other caches
aCallbackArgument | a user-defined parameter to pass to callback events triggered by this method. Can be nullptr. If it is sent on the wire, it has to be Serializable. |
CacheListenerException | if CacheListener throws an exception; if this occurs some subregions may have already been successfully invalidated |
RegionDestroyedException | if the region is no longer valid |
|
inline |
Convenience method allowing key to be a const char*.
|
inline |
Convenience method allowing both key and value to be a const char*.
|
pure virtual |
Places a new value into an entry in this region with the specified key in the local cache only, providing a user-defined parameter object to any CacheWriter
invoked in the process.
The same parameter is also passed to the CacheListener
, if one is defined for this Region
, invoked in the process. If there is already an entry associated with the specified key in this region, the entry's previous value is overwritten.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
key | a key smart pointer associated with the value to be put into this region. |
value | the value to be put into the cache |
aCallbackArgument | an argument that is passed to the callback functions |
IllegalArgumentException | if key or value is nullptr |
CacheWriterException | if CacheWriter aborts the operation |
CacheListenerException | if CacheListener throws an exception |
RegionDestroyedException | if region no longer valid |
OutOfMemoryException | if not enoough memory for the value |
|
inline |
Convenience method allowing value to be a const char*.
|
inline |
Convenience method allowing key to be a const char*.
|
inline |
Convenience method allowing both key and value to be a const char*.
|
pure virtual |
Removes the entry with the specified key and value in the local cache only, and provides a user-defined parameter object to any CacheWriter
invoked in the process.
The same parameter is also passed to the CacheListener
and CacheWriter
, if one is defined for this Region
, invoked in the process. Remove removes not only the value but also the key and entry from this region.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
key | the key of the entry to remove. |
value | the value of the entry to remove. |
aCallbackArgument | the callback for user to pass in, default is nullptr. |
IllegalArgumentException | if key is nullptr |
CacheWriterException | if CacheWriter aborts the operation |
CacheListenerException | if CacheListener throws an exception |
|
inline |
Convenience method allowing value to be a const char*.
|
inline |
Convenience method allowing key to be a const char*.
|
pure virtual |
Removes the entry with the specified key in the local cache only, and provides a user-defined parameter object to any CacheWriter
invoked in the process.
The same parameter is also passed to the CacheListener
and CacheWriter
, if one is defined for this Region
, invoked in the process. Remove removes not only the value but also the key and entry from this region.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
key | the key of the entry to remove. |
aCallbackArgument | the callback for user to pass in, default is nullptr. |
IllegalArgumentException | if key is nullptr |
CacheWriterException | if CacheWriter aborts the operation |
CacheListenerException | if CacheListener throws an exception |
|
inline |
Convenience method allowing key to be a const char*.
|
inline |
Convenience method allowing both key and value to be a const char*.
|
pure virtual |
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.
The same parameter is also passed to the CacheListener
, if one is defined for this Region
, invoked in the process. If there is already an entry associated with the specified key in this region, the entry's previous value is overwritten. The new put value is propogated to the java server to which it is connected with.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
If remote server put fails throwing back a CacheServerException
or security exception, then local put is tried to rollback. However, if the entry has overflowed/evicted/expired then the rollback is aborted since it may be due to a more recent notification or update by another thread.
key | a key smart pointer associated with the value to be put into this region. |
value | the value to be put into the cache |
aCallbackArgument | an argument that is passed to the callback function |
IllegalArgumentException | if key or value is nullptr |
CacheWriterException | if CacheWriter aborts the operation |
CacheListenerException | if CacheListener throws an exception |
RegionDestroyedException | if region no longer valid |
CacheServerException | If an exception is received from the Java cache server. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when an unregistered typeId is received in the reply or reply is not well formed. More information can be found in the log. |
TimeoutException | if operation timed out |
OutOfMemoryException | if not enoough memory for the value |
|
inline |
Convenience method allowing value to be a const char*.
|
pure virtual |
Places a set of new values in this region with the specified keys given as a map of key/value pairs.
If there is already an entry associated with a specified key in this region, the entry's previous value is overwritten.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entries.
map | A hashmap containing key-value pairs |
timeout | The time to wait for the response, optional. |
aCallbackArgument | an argument that is passed to the callback functions. It is ignored if nullptr. It must be serializable if this operation is distributed. |
IllegalArgumentException | If timeout exceeds 2147483647ms. |
|
pure virtual |
Executes the query on the server based on the predicate.
Valid only for a Native Client region.
predicate | The query predicate (just the WHERE clause) or the entire query to execute. |
timeout | The time to wait for the query response, optional. |
IllegalArgumentException | If timeout exceeds 2147483647ms. |
QueryException | if some query error occurred at the server. |
CacheServerException | If an exception is received from the Java cache server. |
NotConnectedException | if a server connection error occurs. For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when an unregistered typeId is received in the reply or reply is not well formed. More information can be found in the log. |
TimeoutException | if operation timed out |
CacheClosedException | if the cache has been closed |
|
pure virtual |
Registers to get updates for all keys from the server.
isDurable | flag to indicate whether this is a durable registration |
getInitialValues | true to populate the cache with values of all keys from the server |
receiveValues | whether to act like notify-by-subscription is set |
EntryNotFoundException | If an exception occurs while obtaining values from server after register interest is complete. The actual cause of the exception can be obtained using Exception::getCause . If an application wants to undo the registration on server, or take some other steps for the incomplete cache population then this is the exception that should be caught. |
UnsupportedOperationException | If the region is not a Native Client region |
CacheServerException | If an exception is received from the Java cache server. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
RegionDestroyedException | If region destroy is pending. |
UnknownException | For other exceptions. |
TimeoutException | if operation timed out |
|
pure virtual |
Registers an array of keys for getting updates from the server.
keys | the array of keys |
isDurable | flag to indicate whether this is a durable registration |
getInitialValues | true to populate the cache with values of the keys that were registered on the server |
receiveValues | whether to act like notify-by-subscription is set |
IllegalArgumentException | If the array of keys is empty. |
IllegalStateException | If already registered interest for all keys. |
EntryNotFoundException | If an exception occurs while obtaining values from server after register interest is complete. The actual cause of the exception can be obtained using Exception::getCause . If an application wants to undo the registration on server, or take some other steps for the incomplete cache population then this is the exception that should be caught. |
UnsupportedOperationException | If the region is not a Native Client region |
CacheServerException | If an exception is received from the Java cache server. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
RegionDestroyedException | If region destroy is pending. |
UnknownException | For other exceptions. |
TimeoutException | if operation timed out |
|
pure virtual |
Registers a regular expression to match with keys to get updates from the server.
regex | The regular expression string. |
isDurable | flag to indicate whether this is a durable registration |
getInitialValues | true to populate the cache with values of the keys that were registered on the server |
receiveValues | whether to act like notify-by-subscription is set |
IllegalArgumentException | If regex is empty. |
IllegalStateException | If already registered interest for all keys. |
EntryNotFoundException | If an exception occurs while obtaining values from server after register interest is complete. The actual cause of the exception can be obtained using Exception::getCause . If an application wants to undo the registration on server, or take some other steps for the incomplete cache population then this is the exception that should be caught. |
UnsupportedOperationException | If the region is not a Native Client region |
CacheServerException | If an exception is received from the Java cache server. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when an unregistered typeId is received in the reply or reply is not well formed. More information can be found in the log. |
RegionDestroyedException | If region destroy is pending. |
UnknownException | For other exceptions. |
TimeoutException | if operation timed out |
|
inline |
Convenience method allowing both key and value to be a const char*.
|
inline |
Convenience method allowing key to be a const char*.
|
inline |
Convenience method allowing both key and value to be a const char*.
|
pure virtual |
Removes the entry with the specified key, value and provides a user-defined parameter object to any CacheWriter
invoked in the process.
The same parameter is also passed to the CacheListener
and CacheWriter
, if one is defined for this Region
, invoked in the process. remove removes not only the value, but also the key and entry from this region.
The remove is propogated to the Geode cache server to which it is connected with. If the destroy fails due to an exception on server throwing back CacheServerException
or security exception, then the local entry is still removed.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
key | the key of the entry to remove |
value | the value of the key to remove, it can be nullptr. |
aCallbackArgument | a user-defined parameter to pass to callback events triggered by this method. Can be nullptr. If it is sent on the wire, it has to be Serializable. |
IllegalArgumentException | if key is nullptr |
CacheWriterException | if CacheWriter aborts the operation |
CacheListenerException | if CacheListener throws an exception |
CacheServerException | If an exception is received from the Geode cache server. Only for Native Client regions. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when an unregistered typeId is received in the reply or reply is not well formed. More information can be found in the log. |
TimeoutException | if the operation timed out |
RegionDestroyedException | if the region is destroyed. |
|
inline |
Convenience method allowing value to be a const char*.
|
pure virtual |
Removes all of the entries for the specified keys from this region.
The effect of this call is equivalent to that of calling destroy
on this region once for each key in the specified collection. If an entry does not exist that key is skipped; EntryNotFoundException is not thrown.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entries.
keys | the keys to remove from this region. |
aCallbackArgument | an argument that is passed to the callback functions. It is ignored if nullptr. It must be serializable if this operation is distributed. |
IllegalArgumentException | If the array of keys is empty. |
CacheServerException | If an exception is received from the Java cache server while processing the request. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the given servers For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
RegionDestroyedException | If region destroy is pending. |
TimeoutException | if operation timed out. |
UnknownException | For other exceptions. |
|
inline |
Convenience method allowing key to be a const char*.
|
pure virtual |
Removes the entry with the specified key and provides a user-defined parameter object to any CacheWriter
invoked in the process.
The same parameter is also passed to the CacheListener
and CacheWriter
, if one is defined for this Region
, invoked in the process. remove removes not only the value, but also the key and entry from this region.
The remove is propogated to the Geode cache server to which it is connected with. If the destroy fails due to an exception on server throwing back CacheServerException
or security exception, then the local entry is still removed.
Updates the CacheStatistics::getLastAccessedTime
and CacheStatistics::getLastModifiedTime
for this region and the entry.
key | the key of the entry to remove |
aCallbackArgument | a user-defined parameter to pass to callback events triggered by this method. Can be nullptr. If it is sent on the wire, it has to be Serializable. |
IllegalArgumentException | if key is nullptr |
CacheWriterException | if CacheWriter aborts the operation |
CacheListenerException | if CacheListener throws an exception |
CacheServerException | If an exception is received from the Geode cache server. Only for Native Client regions. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when an unregistered typeId is received in the reply or reply is not well formed. More information can be found in the log. |
TimeoutException | if the operation timed out |
RegionDestroyedException | if the region is destroyed. |
|
pure virtual |
Executes the query on the server based on the predicate and returns a single result value.
Valid only for a Native Client region.
predicate | The query predicate (just the WHERE clause) or the entire query to execute. |
timeout | The time to wait for the response, optional. |
IllegalArgumentException | If timeout exceeds 2147483647ms. |
QueryException | if some query error occurred at the server, or more than one result items are available. |
NotConnectedException | if a server connection error occurs. For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when an unregistered typeId is received in the reply or reply is not well formed. More information can be found in the log. |
TimeoutException | if operation timed out |
CacheClosedException | if the cache has been closed |
|
pure virtual |
Return the set of keys defined in the server process associated to this client and region.
If a server has the region defined as a mirror, then this will be the entire keyset for the region across all PEER in the distributed system. The vector v will contain only the server keys. Any prior contents in the vector will be removed.
CacheServerException | If an exception is received from the Geode cache server. Only for Native Client regions. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
MessageExcepton | If the message received from server could not be handled. This will be the case when an unregistered typeId is received in the reply or reply is not well formed. More information can be found in the log. |
TimeoutException | if there is a timeout getting the keys |
UnsupportedOperationException | if the member type is not CLIENT or region is not a native client one. |
|
pure virtual |
Get the size of region.
For native client regions, this will give the number of entries in the local cache and not on the servers.
|
pure virtual |
Populates the passed in std::vector<std::shared_ptr<Region>> with subregions of the current region.
recursive | determines whether the method recursively fills in subregions |
RegionDestroyedException |
|
pure virtual |
Registers to get updates for all keys from the server.
IllegalStateException | If not previously registered all keys. |
UnsupportedOperationException | If the region is not a Native Client region |
CacheServerException | If an exception is received from the Java cache server. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
RegionDestroyedException | If region destroy is pending. |
UnknownException | For other exceptions. |
TimeoutException | if operation timed out |
|
pure virtual |
Unregisters an array of keys to stop getting updates for them.
keys | the array of keys |
IllegalArgumentException | If the array of keys is empty. |
IllegalStateException | If no keys were previously registered. |
UnsupportedOperationException | If the region is not a Native Client region |
CacheServerException | If an exception is received from the Java cache server. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
RegionDestroyedException | If region destroy is pending. |
UnknownException | For other exceptions. |
TimeoutException | if operation timed out |
|
pure virtual |
Unregisters a regular expression to stop getting updates for keys from the server.
regex | The regular expression string. |
IllegalArgumentException | If regex is empty. |
IllegalStateException | If not previously registered this regular expression string. |
UnsupportedOperationException | If the region is not a Native Client region |
CacheServerException | If an exception is received from the Java cache server. |
NotConnectedException | if it is not connected to the cache because the client cannot establish usable connections to any of the servers given to it For pools configured with locators, if no locators are available, the cause of NotConnectedException is set to NoAvailableLocatorsException. |
RegionDestroyedException | If region destroy is pending. |
UnknownException | For other exceptions. |
TimeoutException | if operation timed out |
|
pure virtual |
Return all values in the local process for this region.
No value is included for entries that are invalidated.