Package com.gigaspaces.internal.utils
Class ClassLoaderThreadLocal<T>
java.lang.Object
com.gigaspaces.internal.utils.ClassLoaderThreadLocal<T>
- All Implemented Interfaces:
IClassLoaderCacheStateListener
Holds thread local per class loader, get and set method will operate on the thread local which is
associated to the context class loader. Once the class loader is removed, the associated thread
local map is removed as well. This works only
- Since:
- 9.1
- Author:
- eitany
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionget()Returns the value in the current thread's copy of this thread-local variable within the context class loader.protected TReturns the current thread's "initial value" for this thread-local variable.voidonClassLoaderRemoved(Long classLoaderKey, boolean explicit) voidSets the current thread's copy of this thread-local variable within the context class loader to the specified value.
-
Constructor Details
-
ClassLoaderThreadLocal
public ClassLoaderThreadLocal()
-
-
Method Details
-
initialValue
Returns the current thread's "initial value" for this thread-local variable. This method will be invoked the first time a thread accesses the variable with theget()method, unless the thread previously invoked theset(T)method, in which case the initialValue method will not be invoked for the thread. Normally, this method is invoked at most once per thread, but it may be invoked again in case of subsequent invocations of#removefollowed byget().This implementation simply returns null; if the programmer desires thread-local variables to have an initial value other than null, ThreadLocal must be subclassed, and this method overridden. Typically, an anonymous inner class will be used.
- Returns:
- the initial value for this thread-local
-
get
Returns the value in the current thread's copy of this thread-local variable within the context class loader. If the variable has no value for the current thread, it is first initialized to the value returned by an invocation of theinitialValue()method.- Returns:
- the current thread's value of this thread-local
-
set
Sets the current thread's copy of this thread-local variable within the context class loader to the specified value. Most subclasses will have no need to override this method, relying solely on theinitialValue()method to set the values of thread-locals.- Parameters:
value- the value to be stored in the current thread's copy of this thread-local.
-
onClassLoaderRemoved
- Specified by:
onClassLoaderRemovedin interfaceIClassLoaderCacheStateListener
-