IHQueue<T> Interface
Namespace: Hazelcast.DistributedObjects
Assembly: Hazelcast.Net.dll
Defines a concurrent, blocking, distributed, non-partitioned and observable queue.
public interface IHQueue<T> : IHCollection<T>, IDistributedObject, IAsyncDisposable, IAsyncEnumerable<T>
Inherited Members
Type Parameters
T |
Remarks
The Hazelcast IHQueue
is not a partitioned data-structure. Entire contents
of an IHQueue
is stored on a single machine (and in the backup). The IHQueue
will not scale by adding more members to the cluster.
Methods
Name | Description |
---|---|
Drain |
Removes all available elements from this queue and adds them to the given collection. |
Drain |
Removes at most the given number of available elements from this queue and adds them to the given collection. |
Get |
Retrieves, but does not remove, the head of this queue, or throws if this queue is empty. |
Get |
Returns the number of additional elements that this queue can ideally
(in the absence of memory or resource constraints) accept without
blocking, or Max |
Offer |
Tries to enqueue an item. |
Peek |
Retrieves, but does not remove, the head of this queue, or returns |
Poll |
Tries to dequeue an item. |
Put |
Enqueues an item. |
Take |
Dequeues the head item. |