Inherited by GemStone::GemFire::Cache::Cache.
Caches are obtained from Crest methods on the CacheFactory.Create class.
When a cache is created a DistributedSystem must be specified.
When a cache will no longer be used, call Cache.Close. Once it Cache.IsClosed any attempt to use it will cause a CacheClosedException
to be thrown.
A cache can have multiple root regions, each with a different name.
Public Member Functions | |
void | Close () |
QueryService^ | GetQueryService () |
Region^ | GetRegion (String^ name) |
void | InitializeDeclarativeCache (String^ cacheXml) |
array< Region^ >^ | RootRegions () |
Properties | |
DistributedSystem^ | DistributedSystem [get] |
bool | IsClosed [get] |
String^ | Name [get] |
void GemStone::GemFire::Cache::IRegionService::Close | ( | ) | [inherited] |
Terminates this object cache and releases all the local resources. If RegionService is created from Cache.CreateAuthenticatedView, then it clears user related security data.
After this cache is closed, any further method call on this cache or any region object will throw CacheClosedException
, unless otherwise noted.
CacheClosedException | if the cache is already closed. |
Implemented in GemStone::GemFire::Cache::Cache.
QueryService ^ GemStone::GemFire::Cache::IRegionService::GetQueryService | ( | ) | [inherited] |
Get a query service object to be able to query the cache.
Currently only works against the java server in native mode, and at least some endpoints must have been defined in some regions before actually firing a query.
Implemented in GemStone::GemFire::Cache::Cache.
Region ^ GemStone::GemFire::Cache::IRegionService::GetRegion | ( | String^ | name | ) | [inherited] |
Returns an existing region given the full path from root, or null if no such region exists.
name | the name of the region |
Implemented in GemStone::GemFire::Cache::Cache.
void GemStone::GemFire::Cache::IGemFireCache::InitializeDeclarativeCache | ( | String^ | cacheXml | ) |
Initializes the cache from an XML file.
cacheXml | pathname of a cache.xml file |
Implemented in GemStone::GemFire::Cache::Cache.
array<Region^> ^ GemStone::GemFire::Cache::IRegionService::RootRegions | ( | ) | [inherited] |
Returns an array of root regions in the cache. This set is a snapshot and is not backed by the cache.
It is not supported when Cache is created from Pool.
Implemented in GemStone::GemFire::Cache::Cache.
DistributedSystem^ GemStone::GemFire::Cache::IGemFireCache::DistributedSystem [get] |
Returns the distributed system used to CacheFactory.Create this cache.
This method does not throw CacheClosedException
if the cache is closed.
Implemented in GemStone::GemFire::Cache::Cache.
bool GemStone::GemFire::Cache::IRegionService::IsClosed [get, inherited] |
True if this cache has been closed.
After a new cache object is created, this method returns false. After Close is called on this cache object, this method returns true.
Implemented in GemStone::GemFire::Cache::Cache.
String^ GemStone::GemFire::Cache::IGemFireCache::Name [get] |
Returns the name of this cache.
This method does not throw CacheClosedException
if the cache is closed.
Implemented in GemStone::GemFire::Cache::Cache.