| Modifier and Type | Field | Description |
|---|---|---|
private MessageListNode |
MessageQueue.first |
The first node in the queue, which is also where the nodes will be
removed from
|
private MessageListNode |
MessageQueue.last |
The last node in the queue, which is also where the nodes will added
after
|
private MessageListNode |
MessageListNode.next |
the next ListNode after this
|
| Modifier and Type | Method | Description |
|---|---|---|
MessageListNode |
MessageListNode.getNext() |
Returns the next MessageListNode in the linked list
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
MessageListNode.setNext(MessageListNode nxt) |
Sets the next linked node to nxt
|
| Constructor | Description |
|---|---|
MessageListNode(Message msg,
MessageListNode nxt) |
Constructs a new MessageListNode that does not have a MessageListNode
after it with a value of msg
|