org.openejb.util
Class FastThreadLocal.Entry

java.lang.Object
  |
  +--org.openejb.util.FastThreadLocal.Entry
Enclosing class:
FastThreadLocal

class FastThreadLocal.Entry
extends java.lang.Object

Each entry in the table has a key (thread), a value or null (we don't remove on null) and a reference to the next entry in the same table position.


Field Summary
(package private)  FastThreadLocal.Entry next
           
(package private)  java.lang.Thread thread
           
(package private)  java.lang.Object value
           
 
Constructor Summary
(package private) FastThreadLocal.Entry()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

value

java.lang.Object value

next

FastThreadLocal.Entry next

thread

java.lang.Thread thread
Constructor Detail

FastThreadLocal.Entry

FastThreadLocal.Entry()