|
| AttributesFactory () |
| public methods More...
|
|
| AttributesFactory (const RegionAttributesPtr ®ionAttributes) |
| Creates a new instance of AttributesFactory ready to create a RegionAttributes with the same settings as those in the specified RegionAttributes . More...
|
|
RegionAttributesPtr | createRegionAttributes () |
| Creates a RegionAttributes with the current settings. More...
|
|
void | preserveSB () const |
| Atomically increment reference count. More...
|
|
int32_t | refCount () |
|
void | releaseSB () const |
| Atomically decrement reference count, the SharedBase object is automatically deleted when its reference count goes to zero. More...
|
|
void | setCacheListener (const CacheListenerPtr &aListener) |
| Sets the CacheListener for the next RegionAttributes created. More...
|
|
void | setCacheListener (const char *libpath, const char *factoryFuncName) |
| Sets the library path for the library that will be invoked for the listener of the region. More...
|
|
void | setCacheLoader (const CacheLoaderPtr &cacheLoader) |
| Sets the cache loader for the next RegionAttributes created. More...
|
|
void | setCacheLoader (const char *libpath, const char *factoryFuncName) |
| Sets the library path for the library that will be invoked for the loader of the region. More...
|
|
void | setCacheWriter (const CacheWriterPtr &cacheWriter) |
| Sets the cache writer for the next RegionAttributes created. More...
|
|
void | setCacheWriter (const char *libpath, const char *factoryFuncName) |
| Sets the library path for the library that will be invoked for the writer of the region. More...
|
|
void | setCachingEnabled (bool cachingEnabled) |
| Set caching enabled flag for this region. More...
|
|
void | setCloningEnabled (bool isClonable) |
| Sets cloning on region. More...
|
|
void | setConcurrencyChecksEnabled (bool concurrencyChecksEnabled) |
| Enables or disables concurrent modification checks. More...
|
|
void | setConcurrencyLevel (uint8_t concurrencyLevel) |
| Sets the concurrency level tof the next RegionAttributes created. More...
|
|
void | setDiskPolicy (const DiskPolicyType::PolicyType diskPolicy) |
| Sets the Disk policy type for the next RegionAttributes created. More...
|
|
void | setEntryIdleTimeout (ExpirationAction::Action action, int32_t idleTimeout) |
| Sets the idleTimeout expiration attributes for region entries for the next RegionAttributes created. More...
|
|
void | setEntryTimeToLive (ExpirationAction::Action action, int32_t timeToLive) |
| Sets the timeToLive expiration attributes for region entries for the next RegionAttributes created. More...
|
|
void | setInitialCapacity (int initialCapacity) |
| Sets the entry initial capacity for the next RegionAttributes created. More...
|
|
void | setLoadFactor (float loadFactor) |
| Sets the entry load factor for the next RegionAttributes created. More...
|
|
void | setLruEntriesLimit (const uint32_t entriesLimit) |
| Sets a limit on the number of entries that will be held in the cache. More...
|
|
void | setPartitionResolver (const PartitionResolverPtr &aResolver) |
| Sets the PartitionResolver for the next RegionAttributes created. More...
|
|
void | setPartitionResolver (const char *libpath, const char *factoryFuncName) |
| Sets the library path for the library that will be invoked for the partition resolver of the region. More...
|
|
void | setPersistenceManager (const char *libpath, const char *factoryFuncName, const PropertiesPtr &config=::apache::geode::client::NullSharedBase::s_instancePtr) |
| Sets the library path for the library that will be invoked for the persistence of the region. More...
|
|
void | setPersistenceManager (const PersistenceManagerPtr &persistenceManager, const PropertiesPtr &config=::apache::geode::client::NullSharedBase::s_instancePtr) |
| Sets the PersistenceManager for the next RegionAttributes created. More...
|
|
void | setPoolName (const char *name) |
| Sets the pool name attribute. More...
|
|
void | setRegionIdleTimeout (ExpirationAction::Action action, int32_t idleTimeout) |
| Sets the idleTimeout expiration attributes for the region itself for the next RegionAttributes created. More...
|
|
void | setRegionTimeToLive (ExpirationAction::Action action, int32_t timeToLive) |
| Sets the timeToLive expiration attributes for the region itself for the next RegionAttributes created. More...
|
|
virtual | ~AttributesFactory () |
| destructor More...
|
|
Creates instances of RegionAttributes.
An AttributesFactory
instance maintains state for creating RegionAttributes
instances. The setter methods are used to change the settings that will be used for creating the next attributes instance with the createRegionAttributes method. If you create a factory with the default constructor, then the factory is set up to create attributes with all default settings. You can also create a factory by providing a RegionAttributes
, which will set up the new factory with the settings provided in that attributes instance.
Once a RegionAttributes
is created, it can only be modified after it has been used to create a Region
, and then only by using an AttributesMutator obtained from the region.
Attributes
Callbacks
- CacheLoader [default: NULLPTR]
User-implemented plug-in for loading data on cache misses.
setCacheLoader RegionAttributes#getCacheLoader AttributesMutator#setCacheLoader
- CacheWriter [default: NULLPTR]
User-implemented plug-in for intercepting cache modifications, e.g. for writing to an external data source.
setCacheWriter RegionAttributes#getCacheWriter AttributesMutator#setCacheWriter
- CacheListener [default: NULLPTR]
- User-implemented plug-in for receiving and handling cache related events.
setCacheListener RegionAttributes#getCacheListener AttributesMutator#setCacheListener
Expiration
- RegionTimeToLive [default: no expiration]
Expiration configuration for the entire region based on the lastModifiedTime.
setRegionTimeToLive RegionAttributes#getRegionTimeToLive AttributesMutator#setRegionTimeToLive
- RegionIdleTimeout [default: no expiration]
Expiration configuration for the entire region based on the lastAccessedTime.
setRegionIdleTimeout RegionAttributes#getRegionIdleTimeout AttributesMutator#setRegionIdleTimeout
- EntryTimeToLive [default: no expiration]
Expiration configuration for individual entries based on the lastModifiedTime.
setEntryTimeToLive RegionAttributes#getEntryTimeToLive AttributesMutator#setEntryTimeToLive
- EntryIdleTimeout [default: no expiration]
- Expiration configuration for individual entries based on the lastAccessedTime.
setEntryIdleTimeout RegionAttributes#getEntryIdleTimeout AttributesMutator#setEntryIdleTimeout
Storage
- InitialCapacity [default:
16
]
The initial capacity of the map used for storing the entries.
RegionAttributes#getInitialCapacity
- LoadFactor [default:
0.75
]
The load factor of the map used for storing the entries.
RegionAttributes#getLoadFactor
- ConcurrencyLevel [default:
16
]
The allowed concurrency among updates to values in the region is guided by the concurrencyLevel
, which is used as a hint for internal sizing. The actual concurrency will vary. Ideally, you should choose a value to accommodate as many threads as will ever concurrently modify values in the region. Using a significantly higher value than you need can waste space and time, and a significantly lower value can lead to thread contention. But overestimates and underestimates within an order of magnitude do not usually have much noticeable impact. A value of one is appropriate when it is known that only one thread will modify and all others will only read.
setConcurrencyLevel RegionAttributes#getConcurrencyLevel
- StatisticsEnabled [default:
false
]
Whether statistics are enabled for this region. The default is disabled, which conserves on memory.
setStatisticsEnabled RegionAttributes#getStatisticsEnabled
- See also
- RegionAttributes
-
AttributesMutator
-
Region::createSubregion(String, RegionAttributes)
void apache::geode::client::AttributesFactory::setCachingEnabled |
( |
bool |
cachingEnabled | ) |
|
Set caching enabled flag for this region.
If set to false, then no data is stored in the local process, but events and distributions will still occur, and the region can still be used to put and remove, etc... The default if not set is 'true'. This also requires that interestLists are turned off for the region.
- Parameters
-
cachingEnabled | if true, cache data for this region in this process. |
void apache::geode::client::AttributesFactory::setPoolName |
( |
const char * |
name | ) |
|
Sets the pool name attribute.
This causes regions that use these attributes to be a client region which communicates with the servers that the connection pool communicates with.
If this attribute is set to null
or ""
then the connection pool is disabled causing regions that use these attributes to be communicate with peers instead of servers.
The named connection pool must exist on the cache at the time these attributes are used to create a region. See PoolManager#createFactory for how to create a connection pool.
- Parameters
-
name | the name of the connection pool to use; if null or "" then the connection pool is disabled for regions using these attributes. |