Apache Geode Native .NET Reference 1.15.0
|
A factory class that must be used to obtain instance of Cache. More...
#include <CacheFactory.hpp>
Public Member Functions | |
CacheFactory () | |
A factory class that must be used to obtain instance of Cache. More... | |
CacheFactory (Properties< String^, String^>^ dsProps) | |
A factory class that must be used to obtain instance of Cache. More... | |
Cache ^ | Create () |
To create the instance of Cache. More... | |
CacheFactory ^ | Set (String^ name, String^ value) |
Sets a geode property that will be used when creating the ClientCache. More... | |
CacheFactory ^ | SetAuthInitialize (IAuthInitialize^ authInitialize) |
Sets the AuthInitializer defined by the user. More... | |
CacheFactory ^ | SetPdxIgnoreUnreadFields (bool ignore) |
summary> Sets the object preference to PdxInstance type. More... | |
Properties | |
static String^ | ProductDescription [get] |
Returns the product description string including product name and version. More... | |
static String^ | Version [get] |
Returns the version of the cache implementation. More... | |
A factory class that must be used to obtain instance of Cache.
To create a new cache instance, use CacheFactory.Create.
To get an existing unclosed cache instance, use Cache.GetInstance.
Apache::Geode::Client::CacheFactory::CacheFactory | ( | Properties< String^, String^>^ | dsProps | ) |
A factory class that must be used to obtain instance of Cache.
dsProps | Properties which are applicable at client level. |
Apache::Geode::Client::CacheFactory::CacheFactory | ( | ) |
A factory class that must be used to obtain instance of Cache.
CacheFactory ^ Apache::Geode::Client::CacheFactory::Set | ( | String^ | name, |
String^ | value | ||
) |
Sets a geode property that will be used when creating the ClientCache.
name the name of the geode property
value the value of the geode property
CacheFactory
CacheFactory ^ Apache::Geode::Client::CacheFactory::SetAuthInitialize | ( | IAuthInitialize^ | authInitialize | ) |
Sets the AuthInitializer defined by the user.
The AuthInitializer will be used to obtain credentials for a client.
authInitialize
CacheFactory
CacheFactory ^ Apache::Geode::Client::CacheFactory::SetPdxIgnoreUnreadFields | ( | bool | ignore | ) |
summary> Sets the object preference to PdxInstance type.
When a cached object that was serialized as a PDX is read from the cache a PdxInstance
will be returned instead of the actual domain class. The PdxInstance is an interface that provides run time access to the fields of a PDX without deserializing the entire PDX. The PdxInstance implementation is a light weight wrapper that simply refers to the raw bytes of the PDX that are kept in the cache. Using this method applications can choose to access PdxInstance instead of Java object. Note that a PdxInstance is only returned if a serialized PDX is found in the cache. If the cache contains a deserialized PDX, then a domain class instance is returned instead of a PdxInstance. /summary> pdxReadSerialized
to prefer PdxInstance
, the default, if they should be preserved.
CacheFactory
|
staticget |
Returns the product description string including product name and version.
summary> Control whether pdx ignores fields that were unread during deserialization. The default is to preserve unread fields be including their data during serialization. But if you configure the cache to ignore unread fields then their data will be lost during serialization.
You should only set this attribute to true
if you know this member will only be reading cache data. In this use case you do not need to pay the cost of preserving the unread fields since you will never be reserializing pdx data. summary> ignore
if fields not read during pdx deserialization should be ignored;
, the default, if they should be preserved.
CacheFactory
|
staticget |
Returns the version of the cache implementation.
For the 1.0 release of Geode, the string returned is 1.0
.
String