• Webinars
  • Docs
  • Download
  • Blogs
  • Contact Us
Try Free
Show / Hide Table of Contents

Interface IDistributedQueue<T>

This interface contains methods and parameters for distrubited Queue.

Inherited Members
IDistributedDataTypes.Key
IDistributedDataTypes.WriteThruOptions
ILockable.Lock(TimeSpan)
ILockable.Unlock()
INotifiable.RegisterNotification(DataTypeDataNotificationCallback, EventType, DataTypeEventDataFilter)
INotifiable.UnRegisterNotification(DataTypeDataNotificationCallback, EventType)
Assembly: Alachisoft.NCache.Client.dll
Syntax
public interface IDistributedQueue<T> : IEnumerable<T>, ICollection, IEnumerable, IDistributedDataTypes, ILockable, INotifiable
Type Parameters
Name Description
T

The type of elements in the Queue.

Methods

Name Description
Clear()

Removes all objects from the IQueue.

Contains(T)

Determines whether the element exists in IQueue.

CopyTo(T[], Int32)

Copies the IQueue elements to the specified array, starting at the specified index.

Dequeue()

Removes and returns the object at the beginning of the IQueue.

Enqueue(T)

Adds an object to the end of the IQueue.

Peek()

Returns the object at the beginning of the IQueue without removing it.

ToArray()

Copies the IQueue elements to a new array.

Back to top Copyright © 2017 Alachisoft