| java.lang.InheritableThreadLocal
InheritableThreadLocal | public class InheritableThreadLocal extends ThreadLocal (Code) | | An InheritableThreadLocal is very similar to a ThreadLocal, with the added
functionality that a child Thread inherits all InheritableThreadLocal from
its parent Thread upon Thread creation time.
See Also: java.lang.Thread See Also: java.lang.ThreadLocal |
Method Summary | |
protected T | childValue(T parentValue) Computes the created Thread's initial value for this
InheritableThreadLocal based on the current value of the same local on
the creator Thread. |
InheritableThreadLocal | public InheritableThreadLocal()(Code) | | Constructs a new InheritableThreadLocal object
|
childValue | protected T childValue(T parentValue)(Code) | | Computes the created Thread's initial value for this
InheritableThreadLocal based on the current value of the same local on
the creator Thread.
|
|
|