VMware Tanzu GemFire Native C++ Reference
10.1.5
|
Go to the documentation of this file.
20 #ifndef GEODE_REGIONSERVICE_H_
21 #define GEODE_REGIONSERVICE_H_
26 #include "PdxInstanceFactory.hpp"
27 #include "internal/geode_globals.hpp"
94 virtual std::shared_ptr<Region>
getRegion(
const std::string& name)
const = 0;
110 virtual std::vector<std::shared_ptr<Region>>
rootRegions()
const = 0;
120 const std::string& className)
const = 0;
126 #endif // GEODE_REGIONSERVICE_H_
virtual bool isClosed() const =0
public methods
virtual void close()=0
Terminates this object cache and releases all the local resources.
PdxInstanceFactory gives you a way to create PdxInstances.
Definition: PdxInstanceFactory.hpp:52
A RegionService provides access to existing regions that exist in a Geode cache.
Definition: RegionService.hpp:62
virtual std::shared_ptr< Region > getRegion(const std::string &name) const =0
Look up a region with the name.
virtual std::vector< std::shared_ptr< Region > > rootRegions() const =0
Returns a set of root regions in the cache.
virtual PdxInstanceFactory createPdxInstanceFactory(const std::string &className) const =0
Returns a factory that can create a PdxInstance.
virtual std::shared_ptr< QueryService > getQueryService()=0
Gets the QueryService from which a new Query can be obtained.
Apache Geode C++ Cache API Documentation