RegionGetServerKeys Method |
Returns the set of keys defined in the server process associated with 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 server
Peers in the distributed system.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic ICacheableKey[] GetServerKeys()
Public Function GetServerKeys As ICacheableKey()
public:
array<ICacheableKey^>^ GetServerKeys()
member GetServerKeys : unit -> ICacheableKey[]
Return Value
Type:
ICacheableKeyarray of keys
ExceptionsException | Condition |
---|
UnsupportedOperationException |
if the member type is not Client
or region is not a Native Client region.
|
CacheServerException |
If an exception is received from the Java cache server.
Only for Native Client regions.
|
NotConnectedException |
if not connected to the GemFire 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, innerException
of NotConnectedException is set to NoAvailableLocatorsException.
|
MessageException |
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
|
See Also