A DList is an implementation of an unsynchronized doubly linked list. Unlike java.util.LinkedList, each node in the DList (DListNode) can be delinked in constant time. However, to do this the application must have the reference of the node to be delinked. DLists are exrtemely usefull if nodes are removed/inserted quite frequently. DList is used in the implementation of com.sun.enterprise.util.cache.AdaptiveCache.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.