java.lang.InheritableThreadLocal
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.
Summary
Public Constructors
Protected Methods
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Public Constructors
public
InheritableThreadLocal()
Constructs a new InheritableThreadLocal object
Protected Methods
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.