Try Playground
Show / Hide Table of Contents

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.String key

Name of collection to be created.

ReadThruOptions options

ReadThruOptions to read from data source. These can be either ReadThru, ReadThruForced or None.

Returns
Type Description
IDistributedQueue<T>

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("demoCache");
string dataTypeName = "DistributedQueue";

IDistributedQueue<Product> queue = cache.DataTypeManager.GetQueue<Product>(dataTypeName);
Back to top Copyright © 2017 Alachisoft