Interface IIgniteClient
Main entry point for Ignite Thin Client APIs. You can obtain an instance of IIgniteClient through one of the StartClient() overloads.
Instances of this class and all nested APIs are thread safe.
Inherited Members
Namespace: Apache.Ignite.Core.Client
Assembly: Apache.Ignite.Core.dll
Syntax
public interface IIgniteClient : IDisposable
Properties
LocalEndPoint
Gets the current local EndPoint.
Declaration
EndPoint LocalEndPoint { get; }
Property Value
| Type | Description |
|---|---|
| System.Net.EndPoint |
RemoteEndPoint
Gets the current remote EndPoint.
Declaration
EndPoint RemoteEndPoint { get; }
Property Value
| Type | Description |
|---|---|
| System.Net.EndPoint |
Methods
CreateCache<TK, TV>(CacheClientConfiguration)
Dynamically starts new cache using provided configuration.
Declaration
ICacheClient<TK, TV> CreateCache<TK, TV>(CacheClientConfiguration configuration)
Parameters
| Type | Name | Description |
|---|---|---|
| CacheClientConfiguration | configuration | Cache configuration. |
Returns
| Type | Description |
|---|---|
| ICacheClient<TK, TV> | Existing or newly created cache. |
Type Parameters
| Name | Description |
|---|---|
| TK | Cache key type. |
| TV | Cache value type. |
CreateCache<TK, TV>(String)
Dynamically starts new cache using template configuration.
Declaration
ICacheClient<TK, TV> CreateCache<TK, TV>(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | Cache name. |
Returns
| Type | Description |
|---|---|
| ICacheClient<TK, TV> | Existing or newly created cache. |
Type Parameters
| Name | Description |
|---|---|
| TK | Cache key type. |
| TV | Cache value type. |
DestroyCache(String)
Destroys dynamically created (with CreateCache<TK, TV>(String) or GetOrCreateCache<TK, TV>(String)) cache.
Declaration
void DestroyCache(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The name of the cache to stop. |
GetBinary()
Gets Ignite binary services.
Declaration
IBinary GetBinary()
Returns
| Type | Description |
|---|---|
| IBinary | Instance of IBinary interface |
GetCache<TK, TV>(String)
Gets the cache instance for the given name to work with keys and values of specified types.
You can get instances of ICacheClient<TK, TV> of the same name, but with different key/value types. These will use the same named cache, but only allow working with entries of specified types. Attempt to retrieve an entry of incompatible type will result in System.InvalidCastException. Use GetCache<TK, TV>(String) in order to work with entries of arbitrary types.
Declaration
ICacheClient<TK, TV> GetCache<TK, TV>(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | Cache name. |
Returns
| Type | Description |
|---|---|
| ICacheClient<TK, TV> | Cache instance for given name. |
Type Parameters
| Name | Description |
|---|---|
| TK | Cache key type. |
| TV | Cache value type. |
GetCacheNames()
Gets the collection of names of currently available caches, or empty collection if there are no caches.
Declaration
ICollection<string> GetCacheNames()
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.ICollection<System.String> | Collection of names of currently available caches. |
GetConfiguration()
Gets the configuration.
Declaration
IgniteClientConfiguration GetConfiguration()
Returns
| Type | Description |
|---|---|
| IgniteClientConfiguration |
GetOrCreateCache<TK, TV>(CacheClientConfiguration)
Gets existing cache with the given name or creates new one using provided configuration.
Declaration
ICacheClient<TK, TV> GetOrCreateCache<TK, TV>(CacheClientConfiguration configuration)
Parameters
| Type | Name | Description |
|---|---|---|
| CacheClientConfiguration | configuration | Cache configuration. |
Returns
| Type | Description |
|---|---|
| ICacheClient<TK, TV> | Existing or newly created cache. |
Type Parameters
| Name | Description |
|---|---|
| TK | Cache key type. |
| TV | Cache value type. |
GetOrCreateCache<TK, TV>(String)
Gets existing cache with the given name or creates new one using template configuration.
Declaration
ICacheClient<TK, TV> GetOrCreateCache<TK, TV>(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | Cache name. |
Returns
| Type | Description |
|---|---|
| ICacheClient<TK, TV> | Existing or newly created cache. |
Type Parameters
| Name | Description |
|---|---|
| TK | Cache key type. |
| TV | Cache value type. |