Package | Description |
---|---|
com.gemstone.gemfire.cache.client |
The
com.gemstone.gemfire.cache.client package provides APIs used
for client connectivity and caching. |
Modifier and Type | Method and Description |
---|---|
ClientRegionFactory<K,V> |
ClientRegionFactory.addCacheListener(CacheListener<K,V> aListener)
Adds a cache listener to the end of the list of cache listeners on this factory.
|
<K,V> ClientRegionFactory<K,V> |
ClientCache.createClientRegionFactory(ClientRegionShortcut shortcut)
Create and return a client region factory that is initialized to create
a region using the given predefined region attributes.
|
<K,V> ClientRegionFactory<K,V> |
ClientCache.createClientRegionFactory(String regionAttributesId)
Create and return a client region factory that is initialized to create
a region using the given named region attributes.
|
ClientRegionFactory<K,V> |
ClientRegionFactory.initCacheListeners(CacheListener<K,V>[] newListeners)
Removes all cache listeners and then adds each listener in the specified array.
|
ClientRegionFactory<K,V> |
ClientRegionFactory.setCloningEnabled(boolean cloningEnable)
Sets cloning on region
|
ClientRegionFactory<K,V> |
ClientRegionFactory.setCompressor(Compressor compressor)
Set the compressor to be used by this region for compressing
region entry values.
|
ClientRegionFactory<K,V> |
ClientRegionFactory.setConcurrencyLevel(int concurrencyLevel)
Sets the concurrency level tof the next
RegionAttributes
created. |
ClientRegionFactory<K,V> |
ClientRegionFactory.setCustomEntryIdleTimeout(CustomExpiry<K,V> custom)
Sets the custom idleTimeout for the next
RegionAttributes
created. |
ClientRegionFactory<K,V> |
ClientRegionFactory.setCustomEntryTimeToLive(CustomExpiry<K,V> custom)
Sets the custom timeToLive expiration method for the next
RegionAttributes created. |
ClientRegionFactory<K,V> |
ClientRegionFactory.setDiskStoreName(String name)
Sets the DiskStore name attribute.
|
ClientRegionFactory<K,V> |
ClientRegionFactory.setDiskSynchronous(boolean isSynchronous)
Sets whether or not the writing to the disk is synchronous.
|
ClientRegionFactory<K,V> |
ClientRegionFactory.setEntryIdleTimeout(ExpirationAttributes idleTimeout)
Sets the idleTimeout expiration attributes for region entries for the next
RegionAttributes created. |
ClientRegionFactory<K,V> |
ClientRegionFactory.setEntryTimeToLive(ExpirationAttributes timeToLive)
Sets the timeToLive expiration attributes for region entries for the next
RegionAttributes created. |
ClientRegionFactory<K,V> |
ClientRegionFactory.setEvictionAttributes(EvictionAttributes evictionAttributes)
Sets the eviction attributes that controls growth of the Region to be created.
|
ClientRegionFactory<K,V> |
ClientRegionFactory.setInitialCapacity(int initialCapacity)
Sets the entry initial capacity for the next
RegionAttributes
created. |
ClientRegionFactory<K,V> |
ClientRegionFactory.setKeyConstraint(Class<K> keyConstraint)
Sets the key constraint for the next
RegionAttributes
created. |
ClientRegionFactory<K,V> |
ClientRegionFactory.setLoadFactor(float loadFactor)
Sets the entry load factor for the next
RegionAttributes
created. |
ClientRegionFactory<K,V> |
ClientRegionFactory.setPoolName(String poolName)
Sets the pool name attribute.
|
ClientRegionFactory<K,V> |
ClientRegionFactory.setRegionIdleTimeout(ExpirationAttributes idleTimeout)
Sets the idleTimeout expiration attributes for the region itself for the
next
RegionAttributes created. |
ClientRegionFactory<K,V> |
ClientRegionFactory.setRegionTimeToLive(ExpirationAttributes timeToLive)
Sets the timeToLive expiration attributes for the region itself for the
next
RegionAttributes created. |
ClientRegionFactory<K,V> |
ClientRegionFactory.setStatisticsEnabled(boolean statisticsEnabled)
Sets whether statistics are enabled for this region and its entries.
|
ClientRegionFactory<K,V> |
ClientRegionFactory.setValueConstraint(Class<V> valueConstraint)
Sets the value constraint for the next
RegionAttributes
created. |
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.