LinkedBlockingQueue.Node

Linked list node class.

class LinkedBlockingQueue(E)
static
class Node (
E
) {}

Constructors

this
this(E x)
Undocumented in source.

Members

Variables

item
E item;
Undocumented in source.
next
Node!(E) next;

One of: - the real successor Node - this Node, meaning the successor is head.next - null, meaning there is no successor (this is the last node)

Meta