Uses of Class
org.apache.ignite.client.ClientCacheConfiguration
-
Packages that use ClientCacheConfiguration Package Description org.apache.ignite.client Contains Ignite Thin Client API classes.org.apache.ignite.internal.client.thin -
-
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. -
Uses of ClientCacheConfiguration in org.apache.ignite.internal.client.thin
Methods in org.apache.ignite.internal.client.thin that return ClientCacheConfiguration Modifier and Type Method Description ClientCacheConfigurationTcpClientCache. getConfiguration()Methods in org.apache.ignite.internal.client.thin that return types with arguments of type ClientCacheConfiguration Modifier and Type Method Description IgniteClientFuture<ClientCacheConfiguration>TcpClientCache. getConfigurationAsync()Gets the cache configuration asynchronously.Methods in org.apache.ignite.internal.client.thin with parameters of type ClientCacheConfiguration Modifier and Type Method Description <K,V>
ClientCache<K,V>TcpIgniteClient. createCache(ClientCacheConfiguration cfg)Creates a cache with the specified configuration.<K,V>
IgniteClientFuture<ClientCache<K,V>>TcpIgniteClient. createCacheAsync(ClientCacheConfiguration cfg)Creates a cache with the specified configuration.<K,V>
ClientCache<K,V>TcpIgniteClient. getOrCreateCache(ClientCacheConfiguration cfg)Gets the existing cache or creates a new cache if it does not exist.<K,V>
IgniteClientFuture<ClientCache<K,V>>TcpIgniteClient. getOrCreateCacheAsync(ClientCacheConfiguration cfg)Gets the existing cache or creates a new cache if it does not exist.
-