java.lang
Class  InheritableThreadLocal.Entry
java.lang.Object
  |
  +--java.lang.ThreadLocal.Entry
        |
        +--java.lang.InheritableThreadLocal.Entry
-  class InheritableThreadLocal.Entry
- extends ThreadLocal.Entry
  
The information associated with an (InheritableThreadLocal,Thread) pair.
 
 
 
| 
Method Summary | 
(package private)  void | 
bequeath(Thread child)
 
          Passes the ThreadLocal value represented by this Entry on to the
 specified child Thread. | 
 
| Methods inherited from class java.lang.Object | 
, 
clone, 
equals, 
finalize, 
getClass, 
hashCode, 
notify, 
notifyAll, 
registerNatives, 
toString, 
wait, 
wait, 
wait | 
 
next
InheritableThreadLocal.Entry next
InheritableThreadLocal.Entry
private InheritableThreadLocal.Entry(Object value,
                                     Thread t)
- This constructor places the newly constructed Entry on the
 specified thread's values list.
 
InheritableThreadLocal.Entry
InheritableThreadLocal.Entry(Object value)
- This constructor places the newly constructed Entry on the
 calling thread's values list.
 
bequeath
void bequeath(Thread child)
- Passes the ThreadLocal value represented by this Entry on to the
 specified child Thread.