Method Clear
Clear()
Removes all objects from the IQueue.
Declaration
void Clear()
Examples
The following code sample shows how to clear distributed queue.
ICache cache = CacheManager.GetCache("myCache");
string dataTypeName = "DistributedQueue";
IDistributedQueue<Product> queue = cache.DataTypeManager.GetQueue<Product>(dataTypeName);
queue.Clear();