VMware Tanzu GemFire Native C++ Reference
10.1.5
|
Go to the documentation of this file.
20 #ifndef GEODE_AUTHENTICATEDVIEW_H_
21 #define GEODE_AUTHENTICATEDVIEW_H_
25 #include <geode/Region.hpp>
27 #include <geode/internal/geode_globals.hpp>
37 class GuardUserAttributes;
39 class FunctionServiceImpl;
75 std::shared_ptr<Region>
getRegion(
const std::string& path)
const override;
92 std::vector<std::shared_ptr<Region>>
rootRegions()
const override;
103 std::shared_ptr<Pool> pool, CacheImpl* cacheImpl);
115 const std::string& className)
const override;
121 std::shared_ptr<UserAttributes> m_userAttributes;
122 bool m_isAuthenticatedViewClosed;
123 std::shared_ptr<QueryService> m_remoteQueryService;
124 CacheImpl* m_cacheImpl;
127 friend class ProxyRegion;
128 friend class ProxyRemoteQueryService;
129 friend class RemoteQuery;
130 friend class ExecutionImpl;
131 friend class FunctionServiceImpl;
133 friend class GuardUserAttributes;
134 friend class CacheRegionHelper;
140 #endif // GEODE_AUTHENTICATEDVIEW_H_
AuthenticatedView(std::shared_ptr< Properties > credentials, std::shared_ptr< Pool > pool, CacheImpl *cacheImpl)
constructors
void close() override
Terminates this object cache and releases all the local resources.
std::shared_ptr< QueryService > getQueryService() override
Gets the QueryService from which a new Query can be obtained.
std::shared_ptr< Region > getRegion(const std::string &path) const override
Look up a region with the full path from root.
Creates an authenticated cache view to allow credential based access to region services.
Definition: AuthenticatedView.hpp:46
virtual ~AuthenticatedView()
destructor
A pool of connections to connect from a client to a set of Geode Cache Servers.
Definition: Pool.hpp:63
PdxInstanceFactory gives you a way to create PdxInstances.
Definition: PdxInstanceFactory.hpp:52
PdxInstanceFactory createPdxInstanceFactory(const std::string &className) const override
Returns a factory that can create a PdxInstance.
std::vector< std::shared_ptr< Region > > rootRegions() const override
Returns a set of root regions in the cache.
A RegionService provides access to existing regions that exist in a Geode cache.
Definition: RegionService.hpp:62
entry point for function execution
Definition: FunctionService.hpp:45
bool isClosed() const override
public methods
Apache Geode C++ Cache API Documentation