Interface ICollectionManager
This interface contains create and get operations for all collection data types.
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. |