Uses of Class
org.jboss.util.collection.ConcurrentSkipListMap.Index
-
Packages that use ConcurrentSkipListMap.Index Package Description org.jboss.util.collection Extentions to the Java Collections framework. -
-
Uses of ConcurrentSkipListMap.Index in org.jboss.util.collection
Subclasses of ConcurrentSkipListMap.Index in org.jboss.util.collection Modifier and Type Class Description (package private) static classConcurrentSkipListMap.HeadIndex<K,V>Nodes heading each level keep track of their level.Fields in org.jboss.util.collection declared as ConcurrentSkipListMap.Index Modifier and Type Field Description (package private) ConcurrentSkipListMap.Index<K,V>ConcurrentSkipListMap.Index. down(package private) ConcurrentSkipListMap.Index<K,V>ConcurrentSkipListMap.Index. rightFields in org.jboss.util.collection with type parameters of type ConcurrentSkipListMap.Index Modifier and Type Field Description (package private) static java.util.concurrent.atomic.AtomicReferenceFieldUpdater<ConcurrentSkipListMap.Index,ConcurrentSkipListMap.Index>ConcurrentSkipListMap.Index. rightUpdaterUpdater for casRight(package private) static java.util.concurrent.atomic.AtomicReferenceFieldUpdater<ConcurrentSkipListMap.Index,ConcurrentSkipListMap.Index>ConcurrentSkipListMap.Index. rightUpdaterUpdater for casRightMethods in org.jboss.util.collection with parameters of type ConcurrentSkipListMap.Index Modifier and Type Method Description private voidConcurrentSkipListMap. addIndex(ConcurrentSkipListMap.Index<K,V> idx, ConcurrentSkipListMap.HeadIndex<K,V> h, int indexLevel)Add given index nodes from given level down to 1.(package private) booleanConcurrentSkipListMap.Index. casRight(ConcurrentSkipListMap.Index<K,V> cmp, ConcurrentSkipListMap.Index<K,V> val)compareAndSet right field(package private) booleanConcurrentSkipListMap.Index. link(ConcurrentSkipListMap.Index<K,V> succ, ConcurrentSkipListMap.Index<K,V> newSucc)Tries to CAS newSucc as successor.(package private) booleanConcurrentSkipListMap.Index. unlink(ConcurrentSkipListMap.Index<K,V> succ)Tries to CAS right field to skip over apparent successor succ.Constructors in org.jboss.util.collection with parameters of type ConcurrentSkipListMap.Index Constructor Description HeadIndex(ConcurrentSkipListMap.Node<K,V> node, ConcurrentSkipListMap.Index<K,V> down, ConcurrentSkipListMap.Index<K,V> right, int level)Index(ConcurrentSkipListMap.Node<K,V> node, ConcurrentSkipListMap.Index<K,V> down, ConcurrentSkipListMap.Index<K,V> right)Creates index node with given values
-