VMware GemFire Native Client C++ API Reference
|
VMware VMware GemFire Native C++ Reference 10.4.3
|
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. | |
| 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 . | |
| virtual bool | containsKey (const std::shared_ptr< CacheableKey > &keyPtr) const =0 |
| Only the client's cache is searched for the key. | |
| 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. | |
| 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 . | |
| virtual bool | containsValueForKey (const std::shared_ptr< CacheableKey > &keyPtr) const =0 |
| This operations checks for the value in the local cache . | |
| 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*. | |
| 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*. | |
| 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. | |
| 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*. | |
| virtual std::shared_ptr< Region > | createSubregion (const std::string &subregionName, RegionAttributes aRegionAttributes)=0 |
| Creates a subregion with the specified attributes. | |
| template<class KEYTYPE > | |
| void | destroy (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
| Convenience method allowing key to be a const char*. | |
| 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. | |
| 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. | |
| 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. | |
| 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*. | |
| 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. | |
| 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. | |
| virtual const RegionAttributes & | getAttributes () const =0 |
| Return the RegionAttributes for this region. | |
| virtual std::shared_ptr< AttributesMutator > | getAttributesMutator () const =0 |
| Return the a mutator object for changing a subset of the region attributes. | |
| template<class KEYTYPE > | |
| std::shared_ptr< RegionEntry > | getEntry (const KEYTYPE &key) |
| Convenience method allowing key to be a const char*. | |
| virtual std::shared_ptr< RegionEntry > | getEntry (const std::shared_ptr< CacheableKey > &key)=0 |
| Return the meta-object RegionEntry for key. | |
| 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. | |
| 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. | |
| 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. | |
| virtual const std::string & | getName () const =0 |
| Public Methods. | |
| virtual std::shared_ptr< Region > | getParentRegion () const =0 |
| Returns the parent region, or nullptr if a root region. | |
| virtual RegionService & | getRegionService () const =0 |
Returns the cache associated with this region. | |
| virtual std::shared_ptr< Region > | getSubregion (const std::string &path)=0 |
| Returns the subregion identified by the path, nullptr if no such subregion. | |
| template<class KEYTYPE > | |
| void | invalidate (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
| Convenience method allowing key to be a const char*. | |
| 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. | |
| virtual void | invalidateRegion (const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
| Invalidates this region. | |
| virtual std::vector< std::shared_ptr< CacheableKey > > | keys ()=0 |
| Return all the keys in the local process for this region. | |
| 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. | |
| 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*. | |
| 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*. | |
| 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. | |
| 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*. | |
| template<class KEYTYPE > | |
| void | localDestroy (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
| Convenience method allowing key to be a const char*. | |
| 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. | |
| 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. | |
| template<class KEYTYPE > | |
| void | localInvalidate (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
| Convenience method allowing key to be a const char*. | |
| 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. | |
| virtual void | localInvalidateRegion (const std::shared_ptr< Serializable > &aCallbackArgument=nullptr)=0 |
| Invalidates this region. | |
| 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*. | |
| 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*. | |
| 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. | |
| 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*. | |
| 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*. | |
| 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*. | |
| 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. | |
| 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*. | |
| template<class KEYTYPE > | |
| bool | localRemoveEx (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
| Convenience method allowing key to be a const char*. | |
| 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. | |
| 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*. | |
| 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*. | |
| 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. | |
| 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*. | |
| 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. | |
| 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. | |
| virtual void | registerAllKeys (bool isDurable=false, bool getInitialValues=false, bool receiveValues=true)=0 |
| Registers to get updates for all keys from the server. | |
| 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. | |
| 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. | |
| template<class KEYTYPE > | |
| bool | remove (const KEYTYPE &key) |
| Convenience method allowing both key and value to be a const char*. | |
| 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*. | |
| 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*. | |
| 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. | |
| 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*. | |
| 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. | |
| template<class KEYTYPE > | |
| bool | removeEx (const KEYTYPE &key, const std::shared_ptr< Serializable > &arg=nullptr) |
| Convenience method allowing key to be a const char*. | |
| 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. | |
| 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. | |
| 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. | |
| virtual uint32_t | size ()=0 |
| Get the size of region. | |
| 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. | |
| virtual void | unregisterAllKeys ()=0 |
| Registers to get updates for all keys from the server. | |
| virtual void | unregisterKeys (const std::vector< std::shared_ptr< CacheableKey > > &keys)=0 |
| Unregisters an array of keys to stop getting updates for them. | |
| virtual void | unregisterRegex (const std::string ®ex)=0 |
| Unregisters a regular expression to stop getting updates for keys from the server. | |
| virtual std::vector< std::shared_ptr< Cacheable > > | values ()=0 |
| Return all values in the local process for this region. | |
Detailed Description
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.
- See also
- RegionAttributes
Member Function Documentation
◆ clear()
|
pure virtual |
Removes all entries from this region and provides a user-defined parameter object to any CacheWriter or CacheListener invoked in the process.
◆ containsKey() [1/2]
|
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.
◆ containsKey() [2/2]
|
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.
◆ containsKeyOnServer()
|
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.
- Exceptions
-
UnsupportedOperationException if the region's scope is ScopeType::LOCAL.
◆ containsValueForKey() [1/2]
|
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.
◆ containsValueForKey() [2/2]
|
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.
◆ create() [1/4]
|
inline |
Convenience method allowing key to be a const char*.
◆ create() [2/4]
|
inline |
Convenience method allowing both key and value to be a const char*.
◆ create() [3/4]
|
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.
- Parameters
-
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
- Exceptions
-
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
◆ create() [4/4]
|
inline |
Convenience method allowing value to be a const char*.
◆ createSubregion()
|
pure virtual |
Creates a subregion with the specified attributes.
◆ destroy() [1/2]
|
inline |
Convenience method allowing key to be a const char*.
◆ destroy() [2/2]
|
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.
- Parameters
-
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.
- Exceptions
-
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.
◆ destroyRegion()
|
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.
- Parameters
-
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.
- Exceptions
-
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
- See also
- invalidateRegion
◆ existsValue()
|
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.
- Parameters
-
predicate The query predicate (just the WHERE clause) or the entire query to execute. timeout The time to wait for the response, optional.
- Exceptions
-
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
- Returns
- true if the result size is non-zero, false otherwise.
◆ get() [1/2]
|
inline |
Convenience method allowing key to be a const char*.
◆ get() [2/2]
|
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.
- Parameters
-
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.
- Exceptions
-
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
◆ getAll()
|
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.
- Parameters
-
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 addToLocalCacheparameter should be true and caching should be enabled for the region to get values into the region otherwise anIllegalArgumentExceptionis thrown.exceptions Output parameter that provides the map of keys to any exceptions while obtaining the key. It is ignored if nullptr.
- Since
- 8.1
- Parameters
-
aCallbackArgument an argument that is passed to the callback functions. It may be nullptr. Must be serializable if this operation is distributed.
- Exceptions
-
IllegalArgumentException If the array of keys is empty. Other invalid case is when the valuesparameter is nullptr, and eitheraddToLocalCacheis 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.
- See also
- get
◆ getAttributes()
|
pure virtual |
Return the RegionAttributes for this region.
◆ getAttributesMutator()
|
pure virtual |
Return the a mutator object for changing a subset of the region attributes.
- Exceptions
-
RegionDestroyedException.
◆ getEntry() [1/2]
|
inline |
Convenience method allowing key to be a const char*.
◆ getEntry() [2/2]
|
pure virtual |
Return the meta-object RegionEntry for key.
- Exceptions
-
IllegalArgumentException,RegionDestroyedException.
◆ getFullPath()
|
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.
◆ getInterestList()
|
pure virtual |
Returns the list of keys on which this client is interested and will be notified of changes.
- Exceptions
-
UnsupportedOperationException if the region's scope is ScopeType::LOCAL.
◆ getInterestListRegex()
|
pure virtual |
Returns the list of regular expresssions on which this client is interested and will be notified of changes.
- Exceptions
-
UnsupportedOperationException if the region's scope is ScopeType::LOCAL.
◆ getName()
|
pure virtual |
Public Methods.
return single name of region. The storage is backed by the region.
◆ getParentRegion()
|
pure virtual |
Returns the parent region, or nullptr if a root region.
- Exceptions
-
RegionDestroyedException
◆ getRegionService()
|
pure virtual |
Returns the cache associated with this region.
- Returns
- the cache
◆ getSubregion()
|
pure virtual |
Returns the subregion identified by the path, nullptr if no such subregion.
◆ invalidate() [1/2]
|
inline |
Convenience method allowing key to be a const char*.
◆ invalidate() [2/2]
|
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.
- Parameters
-
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
- Exceptions
-
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
◆ invalidateRegion()
|
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.
- Parameters
-
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.
- Exceptions
-
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
- See also
- destroyRegion
- CacheListener::afterRegionInvalidate This operation is not distributed.
◆ keys()
|
pure virtual |
Return all the keys in the local process for this region.
This includes keys for which the entry is invalid.
◆ localClear()
|
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.
◆ localCreate() [1/4]
|
inline |
Convenience method allowing key to be a const char*.
◆ localCreate() [2/4]
|
inline |
Convenience method allowing both key and value to be a const char*.
◆ localCreate() [3/4]
|
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.
- Parameters
-
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
- Exceptions
-
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
◆ localCreate() [4/4]
|
inline |
Convenience method allowing value to be a const char*.
◆ localDestroy() [1/2]
|
inline |
Convenience method allowing key to be a const char*.
◆ localDestroy() [2/2]
|
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.
- Parameters
-
key the key of the entry to destroy. aCallbackArgument the callback for user to pass in, default is nullptr.
- Exceptions
-
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
◆ localDestroyRegion()
|
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.
- Parameters
-
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.
- Exceptions
-
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
- See also
- localInvalidateRegion
◆ localInvalidate() [1/2]
|
inline |
Convenience method allowing key to be a const char*.
◆ localInvalidate() [2/2]
|
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.
- Parameters
-
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
- Exceptions
-
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
◆ localInvalidateRegion()
|
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
- Parameters
-
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.
- Exceptions
-
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
◆ localPut() [1/4]
|
inline |
Convenience method allowing key to be a const char*.
◆ localPut() [2/4]
|
inline |
Convenience method allowing both key and value to be a const char*.
◆ localPut() [3/4]
|
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.
- Parameters
-
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
- Exceptions
-
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
◆ localPut() [4/4]
|
inline |
Convenience method allowing value to be a const char*.
◆ localRemove() [1/4]
|
inline |
Convenience method allowing key to be a const char*.
◆ localRemove() [2/4]
|
inline |
Convenience method allowing both key and value to be a const char*.
◆ localRemove() [3/4]
|
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.
- Parameters
-
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.
- Exceptions
-
IllegalArgumentException if key is nullptr CacheWriterException if CacheWriter aborts the operation CacheListenerException if CacheListener throws an exception
- Returns
- the boolean true if an entry(key, value)has been removed or false if an entry(key, value) has not been removed.
◆ localRemove() [4/4]
|
inline |
Convenience method allowing value to be a const char*.
◆ localRemoveEx() [1/2]
|
inline |
Convenience method allowing key to be a const char*.
◆ localRemoveEx() [2/2]
|
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.
- Parameters
-
key the key of the entry to remove. aCallbackArgument the callback for user to pass in, default is nullptr.
- Exceptions
-
IllegalArgumentException if key is nullptr CacheWriterException if CacheWriter aborts the operation CacheListenerException if CacheListener throws an exception
- Returns
- the boolean true if an entry(key, value)has been removed or false if an entry(key, value) has not been removed.
◆ put() [1/4]
|
inline |
Convenience method allowing key to be a const char*.
◆ put() [2/4]
|
inline |
Convenience method allowing both key and value to be a const char*.
◆ put() [3/4]
|
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.
- Parameters
-
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
- Exceptions
-
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
◆ put() [4/4]
|
inline |
Convenience method allowing value to be a const char*.
◆ putAll()
|
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.
- Parameters
-
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.
- Exceptions
-
IllegalArgumentException If timeout exceeds 2147483647ms.
- Since
- 8.1
◆ query()
|
pure virtual |
Executes the query on the server based on the predicate.
Valid only for a Native Client region.
- Parameters
-
predicate The query predicate (just the WHERE clause) or the entire query to execute. timeout The time to wait for the query response, optional.
- Exceptions
-
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
- Returns
- A smart pointer to the SelectResults which can either be a ResultSet or a StructSet.
◆ registerAllKeys()
|
pure virtual |
Registers to get updates for all keys from the server.
- Parameters
-
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
- Exceptions
-
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
◆ registerKeys()
|
pure virtual |
Registers an array of keys for getting updates from the server.
- Parameters
-
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
- Exceptions
-
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
◆ registerRegex()
|
pure virtual |
Registers a regular expression to match with keys to get updates from the server.
- Parameters
-
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
- Exceptions
-
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
◆ remove() [1/5]
|
inline |
Convenience method allowing both key and value to be a const char*.
◆ remove() [2/5]
|
inline |
Convenience method allowing key to be a const char*.
◆ remove() [3/5]
|
inline |
Convenience method allowing both key and value to be a const char*.
◆ remove() [4/5]
|
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.
- Parameters
-
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.
- Exceptions
-
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.
- Returns
- the boolean true if an entry(key, value)has been removed or false if an entry(key, value) has not been removed.
◆ remove() [5/5]
|
inline |
Convenience method allowing value to be a const char*.
◆ removeAll()
|
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.
- Since
- 8.1
- Parameters
-
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.
- Exceptions
-
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.
- See also
- destroy
◆ removeEx() [1/2]
|
inline |
Convenience method allowing key to be a const char*.
◆ removeEx() [2/2]
|
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.
- Parameters
-
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.
- Exceptions
-
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.
- Returns
- the boolean true if an entry(key, value)has been removed or false if an entry(key, value) has not been removed.
◆ selectValue()
|
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.
- Parameters
-
predicate The query predicate (just the WHERE clause) or the entire query to execute. timeout The time to wait for the response, optional.
- Exceptions
-
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
◆ serverKeys()
|
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.
- Exceptions
-
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.
◆ size()
|
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.
◆ subregions()
|
pure virtual |
Populates the passed in std::vector<std::shared_ptr<Region>> with subregions of the current region.
- Parameters
-
recursive determines whether the method recursively fills in subregions
- Exceptions
-
RegionDestroyedException
◆ unregisterAllKeys()
|
pure virtual |
Registers to get updates for all keys from the server.
- Exceptions
-
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
◆ unregisterKeys()
|
pure virtual |
Unregisters an array of keys to stop getting updates for them.
- Parameters
-
keys the array of keys
- Exceptions
-
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
◆ unregisterRegex()
|
pure virtual |
Unregisters a regular expression to stop getting updates for keys from the server.
- Parameters
-
regex The regular expression string.
- Exceptions
-
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
◆ values()
|
pure virtual |
Return all values in the local process for this region.
No value is included for entries that are invalidated.
Apache Geode C++ Cache API Documentation