Enumeration: Priority Queue Methods - v1.0
This enumeration defines the methods available for the Priority Queue.
Each method has an associated integer value that is used to identify the
specific operation to be performed on the Priority Queue.
| Name | Type | Value | Description |
|---|---|---|---|
PRIORITY_QUEUE_METHOD_00_NIL | Int | 0 | Priority Queue: 0 - Nil |
PRIORITY_QUEUE_METHOD_01_INIT | Int | 1 | Priority Queue: 1 - Initialized |
PRIORITY_QUEUE_METHOD_10_ENQUEUE | Int | 10 | Priority Queue: 10 - Enqueue data at the end position |
PRIORITY_QUEUE_METHOD_11_DEQUEUE | Int | 11 | Priority Queue: 11 - Dequeue data from the first position |
PRIORITY_QUEUE_METHOD_12_PEEK | Int | 12 | Priority Queue: 12 - Peek data from the first position |