Interface ICollectionManager
This interface contains Create and Get operations for all collection data types
Namespace:
Assembly: Alachisoft.NCache.Client.dll
Syntax
public interface ICollectionManager
Methods
Name | Description |
---|---|
CreateDictionary<String, TValue>(String) | Creates distributed dictionary against the provided collection name. |
CreateDictionary<String, TValue>(String, DataTypeAttributes, WriteThruOptions) | Creates distributed dictionary against the provided collection name and configures it according to the provided user configuration as attributes of collection. |
CreateHashSet<T>(String) | Creates distributed set against the provided collection name. |
CreateHashSet<T>(String, DataTypeAttributes, WriteThruOptions) | Creates distributed set against the provided collection name and configures it according to the provided user configuration as attributes of collection. |
CreateList<T>(String) | Creates distributed list against the provided collection name. |
CreateList<T>(String, DataTypeAttributes, WriteThruOptions) | Creates distributed list against the provided collection name and configures it according to the provided user configuration as attributes of collection. |
CreateQueue<T>(String) | Creates distributed queue against the provided collection name. |
CreateQueue<T>(String, DataTypeAttributes, WriteThruOptions) | Creates distributed queue against the provided collection name and configures it according to the provided user configuration as attributes of collection. |
GetDictionary<String, TValue>(String, ReadThruOptions) | Gets distributed dictionary interface against the provided collection name. |
GetHashSet<T>(String, ReadThruOptions) | Gets distributed set interface against the provided collection name. |
GetList<T>(String, ReadThruOptions) | Gets distributed list interface against the provided collection name. |
GetQueue<T>(String, ReadThruOptions) | Gets distributed queue interface against the provided collection name. |