Package | Description |
---|---|
com.hazelcast.cache.impl |
Hazelcast JSR-107 aka JCache implementation
|
com.hazelcast.cache.impl.client |
Hazelcast JSR-107 aka JCache implementation
Client Requests
|
com.hazelcast.cache.impl.operation |
Hazelcast JSR-107 aka JCache implementation
Cache Operations
|
com.hazelcast.client.cache.impl |
Hazelcast JSR-107 aka JCache implementation client side
|
com.hazelcast.config |
Provides classes for configuring HazelcastInstance.
|
Modifier and Type | Method and Description |
---|---|
protected <K,V,C extends javax.cache.configuration.Configuration<K,V>> |
HazelcastCacheManager.createCacheConfig(String cacheName,
C configuration) |
CacheConfig |
CacheService.getCacheConfig(String name) |
protected abstract <K,V> CacheConfig<K,V> |
HazelcastCacheManager.getCacheConfigFromPartition(String cacheName) |
protected <K,V> CacheConfig<K,V> |
HazelcastServerCacheManager.getCacheConfigFromPartition(String cacheNameWithPrefix) |
protected abstract <K,V> CacheConfig<K,V> |
HazelcastCacheManager.getCacheConfigLocal(String cacheName) |
protected <K,V> CacheConfig<K,V> |
HazelcastServerCacheManager.getCacheConfigLocal(String cacheName) |
CacheConfig |
ICacheRecordStore.getConfig() |
CacheConfig |
CacheRecordStore.getConfig() |
Modifier and Type | Method and Description |
---|---|
Collection<CacheConfig> |
CacheService.getCacheConfigs() |
Collection<CacheConfig> |
CachePartitionSegment.getCacheConfigs() |
Modifier and Type | Method and Description |
---|---|
protected abstract <K,V> void |
HazelcastCacheManager.addCacheConfigIfAbsentToLocal(CacheConfig<K,V> cacheConfig) |
protected <K,V> void |
HazelcastServerCacheManager.addCacheConfigIfAbsentToLocal(CacheConfig<K,V> cacheConfig) |
boolean |
CacheService.createCacheConfigIfAbsent(CacheConfig config,
boolean isLocal) |
protected abstract <K,V> ICache<K,V> |
HazelcastCacheManager.createCacheProxy(CacheConfig<K,V> cacheConfig) |
protected <K,V> ICache<K,V> |
HazelcastServerCacheManager.createCacheProxy(CacheConfig<K,V> cacheConfig) |
protected <K,V> void |
CacheService.createConfigOnAllMembers(CacheConfig<K,V> cacheConfig) |
protected abstract <K,V> boolean |
HazelcastCacheManager.createConfigOnPartition(CacheConfig<K,V> cacheConfig) |
protected <K,V> boolean |
HazelcastServerCacheManager.createConfigOnPartition(CacheConfig<K,V> cacheConfig) |
protected <K,V> void |
HazelcastCacheManager.registerListeners(CacheConfig<K,V> cacheConfig,
ICache<K,V> source) |
static <K> void |
CacheProxyUtil.validateConfiguredTypes(CacheConfig cacheConfig,
K key) |
static <K,V> void |
CacheProxyUtil.validateConfiguredTypes(CacheConfig cacheConfig,
K key,
V value) |
static <K,V> void |
CacheProxyUtil.validateConfiguredTypes(CacheConfig cacheConfig,
K key,
V value1,
V value2) |
Constructor and Description |
---|
CacheMXBeanImpl(CacheConfig cacheConfig) |
CacheProxy(CacheConfig cacheConfig,
NodeEngine nodeEngine,
CacheService cacheService,
HazelcastServerCacheManager cacheManager) |
Constructor and Description |
---|
CacheCreateConfigRequest(CacheConfig cacheConfig,
boolean create,
int partitionId) |
Constructor and Description |
---|
CacheCreateConfigOperation(CacheConfig config) |
CacheCreateConfigOperation(CacheConfig config,
boolean isLocal) |
Modifier and Type | Method and Description |
---|---|
protected <K,V> CacheConfig<K,V> |
HazelcastClientCacheManager.getCacheConfigFromPartition(String cacheName) |
protected <K,V> CacheConfig<K,V> |
HazelcastClientCacheManager.getCacheConfigLocal(String cacheName) |
Modifier and Type | Method and Description |
---|---|
protected <K,V> void |
HazelcastClientCacheManager.addCacheConfigIfAbsentToLocal(CacheConfig<K,V> cacheConfig) |
protected <K,V> ICache<K,V> |
HazelcastClientCacheManager.createCacheProxy(CacheConfig<K,V> cacheConfig) |
protected <K,V> boolean |
HazelcastClientCacheManager.createConfigOnPartition(CacheConfig<K,V> cacheConfig) |
Constructor and Description |
---|
ClientCacheProxy(CacheConfig<K,V> cacheConfig,
ClientContext clientContext,
HazelcastClientCacheManager cacheManager) |
Modifier and Type | Class and Description |
---|---|
class |
CacheConfigReadOnly<K,V>
Contains the configuration for an
ICache (read-only). |
Modifier and Type | Method and Description |
---|---|
CacheConfig<K,V> |
CacheConfigReadOnly.addCacheEntryListenerConfiguration(javax.cache.configuration.CacheEntryListenerConfiguration<K,V> cacheEntryListenerConfiguration) |
CacheConfig<K,V> |
CacheConfigReadOnly.removeCacheEntryListenerConfiguration(javax.cache.configuration.CacheEntryListenerConfiguration<K,V> cacheEntryListenerConfiguration) |
CacheConfig<K,V> |
CacheConfigReadOnly.setAsyncBackupCount(int asyncBackupCount) |
CacheConfig<K,V> |
CacheConfig.setAsyncBackupCount(int asyncBackupCount)
Number of asynchronous backups.
|
CacheConfig<K,V> |
CacheConfigReadOnly.setBackupCount(int backupCount) |
CacheConfig<K,V> |
CacheConfig.setBackupCount(int backupCount)
Number of synchronous backups.
|
CacheConfig<K,V> |
CacheConfigReadOnly.setEvictionPolicy(EvictionPolicy evictionPolicy) |
CacheConfig<K,V> |
CacheConfig.setEvictionPolicy(EvictionPolicy evictionPolicy) |
CacheConfig<K,V> |
CacheConfigReadOnly.setInMemoryFormat(InMemoryFormat inMemoryFormat) |
CacheConfig<K,V> |
CacheConfig.setInMemoryFormat(InMemoryFormat inMemoryFormat)
Data type that will be used for storing records.
|
CacheConfig<K,V> |
CacheConfigReadOnly.setManagementEnabled(boolean enabled) |
CacheConfig<K,V> |
CacheConfigReadOnly.setManagerPrefix(String managerPrefix) |
CacheConfig<K,V> |
CacheConfig.setManagerPrefix(String managerPrefix) |
CacheConfig<K,V> |
CacheConfigReadOnly.setName(String name) |
CacheConfig<K,V> |
CacheConfig.setName(String name) |
CacheConfig |
CacheConfigReadOnly.setNearCacheConfig(NearCacheConfig nearCacheConfig) |
CacheConfig |
CacheConfig.setNearCacheConfig(NearCacheConfig nearCacheConfig) |
CacheConfig<K,V> |
CacheConfigReadOnly.setStoreByValue(boolean storeByValue) |
CacheConfig<K,V> |
CacheConfigReadOnly.setTypes(Class<K> keyType,
Class<V> valueType) |
CacheConfig<K,V> |
CacheConfigReadOnly.setUriString(String uriString) |
CacheConfig<K,V> |
CacheConfig.setUriString(String uriString) |
Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.