Method GetQueue
GetQueue<T>(String, ReadThruOptions)
Gets distributed queue interface against the provided collection name.
Declaration
IDistributedQueue<T> GetQueue<T>(string key, ReadThruOptions options = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | Name of collection to be created. |
Read |
options | Read |
Returns
Type | Description |
---|---|
IDistributed |
Interface for using queue. |
Type Parameters
Name | Description |
---|---|
T | Type of queue items. |
Examples
The following code sample shows how to get a distributed queue handler from cache.
ICache cache = CacheManager.GetCache("myCache");
string dataTypeName = "DistributedQueue";
IDistributedQueue<Product> queue = cache.DataTypeManager.GetQueue<Product>(dataTypeName);