Package com.db4o.foundation
Class ThreadLocal4<T>
- java.lang.Object
-
- com.db4o.foundation.ThreadLocal4<T>
-
public class ThreadLocal4<T> extends java.lang.Object
ThreadLocal implementation for less capable platforms such as JRE 1.1 and Silverlight. This class is not intended to be used directly, useDynamicVariable
. WARNING: This implementation might leak Thread references unlessset(Object)
is called with null on the right thread to clean it up. This behavior is currently guaranteed byDynamicVariable
.
-
-
Constructor Summary
Constructors Constructor Description ThreadLocal4()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
get()
protected T
initialValue()
void
set(T value)
-