Interface IQueue<T>
The interface describing the operations of a FIFO queue data structure.
Inherited Members
Assembly: DistributedLucene.Net.dll
Syntax
public interface IQueue<T> : IDirectedCollectionValue<T>, ICollectionValue<T>, IShowable, IFormattable, IDirectedEnumerable<T>, Collections.Generic.IEnumerable<T>
Type Parameters
Name | Description |
---|---|
T | The item type |
Properties
Name | Description |
---|---|
AllowsDuplicates | |
Item[Int32] | Get the 'th element of the queue. The front of the queue has index 0.
|
Methods
Name | Description |
---|---|
Dequeue() | Dequeue an item from the front of the queue. |
Enqueue(T) | Enqueue an item at the back of the queue. |