Click or drag to resize

IBlockingQueueT Interface

[Missing <summary> documentation for "T:com.espertech.esper.compat.collections.IBlockingQueue`1"]

Namespace:  com.espertech.esper.compat.collections
Assembly:  NEsper.Compat (in NEsper.Compat.dll) Version: 8.0.0.0
Syntax
C#
public interface IBlockingQueue<T>

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:com.espertech.esper.compat.collections.IBlockingQueue`1"]

The IBlockingQueueT type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of items in the queue.
Top
Methods
  NameDescription
Public methodClear
Clears all items from the queue
Public methodIsEmpty
Determines whether this instance is empty.
Public methodPop
Pops an item off the queue. If there is nothing on the queue the call will pend until there is an item on the queue.
Public methodPop(Int32, T)
Pops an item off the queue. If there is nothing on the queue the call will pend until there is an item on the queue or the timeout has expired. If the timeout has expired, the method will return false.
Public methodPush
Pushes an item onto the queue. If the queue has reached capacity, the call will pend until the queue has space to receive the request.
Top
See Also