Interface ISimpleBlockingQueue<TE>
Namespace: FixAntenna.Common.Threading.Queue
Assembly: FixAntenna.Common.dll
Syntax
public interface ISimpleBlockingQueue<TE>
Type Parameters
| Name | Description |
|---|---|
| TE |
Methods
IsEmpty()
Declaration
bool IsEmpty()
Returns
| Type | Description |
|---|---|
| System.Boolean |
Put(TE)
Declaration
void Put(TE item)
Parameters
| Type | Name | Description |
|---|---|---|
| TE | item |
Size()
Declaration
int Size()
Returns
| Type | Description |
|---|---|
| System.Int32 |
Take()
Declaration
TE Take()
Returns
| Type | Description |
|---|---|
| TE |