Uses of Class
org.dbunit.util.concurrent.LinkedNode
Packages that use LinkedNode
-
Uses of LinkedNode in org.dbunit.util.concurrent
Fields in org.dbunit.util.concurrent declared as LinkedNodeModifier and TypeFieldDescriptionprotected LinkedNodeSynchronousChannel.Queue.headThe first node in the queue, ornullif empty.protected LinkedNodeBoundedLinkedQueue.head_Dummy header node of list.protected LinkedNodeLinkedQueue.head_Dummy header node of list.protected LinkedNodeSynchronousChannel.Queue.lastThe last node in the queue, ornullif empty.protected LinkedNodeBoundedLinkedQueue.last_The last node of list.protected LinkedNodeLinkedQueue.last_The last node of list.LinkedNode.nextThe next node in the list, ornullif this is the last node.Methods in org.dbunit.util.concurrent that return LinkedNodeModifier and TypeMethodDescriptionprotected LinkedNodeSynchronousChannel.Queue.deq()Removes and returns the node at the front of the queue.Methods in org.dbunit.util.concurrent with parameters of type LinkedNodeModifier and TypeMethodDescriptionprotected voidSynchronousChannel.Queue.enq(LinkedNode p) Appends the given node to the end of the queue.Constructors in org.dbunit.util.concurrent with parameters of type LinkedNodeModifierConstructorDescriptionLinkedNode(Object x, LinkedNode n) Constructs a node holding the given value and linked to the given next node.