FutureTask.WaitNode

Simple linked list nodes to record waiting threads in a Treiber stack. See other classes such as Phaser and SynchronousQueue for more detailed explanation.

class FutureTask(V)
static final
class WaitNode {}

Constructors

this
this()
Undocumented in source.

Members

Variables

next
WaitNode next;
Undocumented in source.
thread
Thread thread;
Undocumented in source.

Meta