Artemis.Queue: Types Source  

Artemis.Queue

A queue implementation for the Object type.

Types Summary

TQueue A queue implementation.

Types

Type TQueue
DescriptionA 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()
ReturnsThe first object.
DescriptionRemove an object from the queue.
Method enqueue(value:Object)
DescriptionAdd an object to the queue.
Method getFirst:Object()
ReturnsThe first object.
DescriptionGive the first object.
Method getSize:Int()
ReturnsThe queue size.
DescriptionReturn the size of the queue.
Method isEmpty:Int()
Returns1 if queue is empty - otherwise 0.
DescriptionCheck whether queue is empty.