Uses of Class
org.apache.ignite.client.ClientCacheConfiguration
-
Packages that use ClientCacheConfiguration Package Description org.apache.ignite Contains entry-point Ignite & HPC APIs.org.apache.ignite.client Contains Ignite Thin Client API classes. -
-
Uses of ClientCacheConfiguration in org.apache.ignite
Methods in org.apache.ignite with parameters of type ClientCacheConfiguration Modifier and Type Method Description <K,V>
ClientCache<K,V>IgniteClientSpringBean. createCache(ClientCacheConfiguration cfg)
Creates a cache with the specified configuration.<K,V>
IgniteClientFuture<ClientCache<K,V>>IgniteClientSpringBean. createCacheAsync(ClientCacheConfiguration cfg)
Creates a cache with the specified configuration.<K,V>
ClientCache<K,V>IgniteClientSpringBean. getOrCreateCache(ClientCacheConfiguration cfg)
Gets the existing cache or creates a new cache if it does not exist.<K,V>
IgniteClientFuture<ClientCache<K,V>>IgniteClientSpringBean. getOrCreateCacheAsync(ClientCacheConfiguration cfg)
Gets the existing cache or creates a new cache if it does not exist. -
Uses of ClientCacheConfiguration in org.apache.ignite.client
Methods in org.apache.ignite.client that return types with arguments of type ClientCacheConfiguration Modifier and Type Method Description IgniteClientFuture<ClientCacheConfiguration>
ClientCache. getConfigurationAsync()
Gets the cache configuration asynchronously.Methods in org.apache.ignite.client with parameters of type ClientCacheConfiguration Modifier and Type Method Description <K,V>
ClientCache<K,V>IgniteClient. createCache(ClientCacheConfiguration cfg)
Creates a cache with the specified configuration.<K,V>
IgniteClientFuture<ClientCache<K,V>>IgniteClient. createCacheAsync(ClientCacheConfiguration cfg)
Creates a cache with the specified configuration.<K,V>
ClientCache<K,V>IgniteClient. getOrCreateCache(ClientCacheConfiguration cfg)
Gets the existing cache or creates a new cache if it does not exist.<K,V>
IgniteClientFuture<ClientCache<K,V>>IgniteClient. getOrCreateCacheAsync(ClientCacheConfiguration cfg)
Gets the existing cache or creates a new cache if it does not exist.Constructors in org.apache.ignite.client with parameters of type ClientCacheConfiguration Constructor Description ClientCacheConfiguration(ClientCacheConfiguration ccfg)
Creates client cache configuration by coping all configuration properties from the given one.
-