Artemis.Queue: | Types | Source |
TQueue | A queue implementation. |
Type TQueue | |
Description | A queue implementation. |
Methods Summary | |
---|---|
dequeue | Remove an object from the queue. |
enqueue | Add an object to the queue. |
getFirst | Give the first object. |
getSize | Return the size of the queue. |
isEmpty | Check whether queue is empty. |
Method dequeue:Object() | |
Returns | The first object. |
Description | Remove an object from the queue. |
Method enqueue(value:Object) | |
Description | Add an object to the queue. |
Method getFirst:Object() | |
Returns | The first object. |
Description | Give the first object. |
Method getSize:Int() | |
Returns | The queue size. |
Description | Return the size of the queue. |
Method isEmpty:Int() | |
Returns | 1 if queue is empty - otherwise 0. |
Description | Check whether queue is empty. |