Stay organized with collections
Save and categorize content based on your preferences.
ThreadLocal
open class ThreadLocal<T : Any!>
Known Direct Subclasses
InheritableThreadLocal |
This class extends ThreadLocal to provide inheritance of values from parent thread to child thread: when a child thread is created, the child receives initial values for all inheritable thread-local variables for which the parent has values.
|
|
This class provides thread-local variables. These variables differ from their normal counterparts in that each thread that accesses one (via its get
or set
method) has its own, independently initialized copy of the variable. ThreadLocal
instances are typically private static fields in classes that wish to associate state with a thread (e.g., a user ID or Transaction ID).
For example, the class below generates unique identifiers local to each thread. A thread's id is assigned the first time it invokes ThreadId.get()
and remains unchanged on subsequent calls.
import java.util.concurrent.atomic.AtomicInteger;
public class ThreadId {
// Atomic integer containing the next thread ID to be assigned
private static final AtomicInteger nextId = new AtomicInteger(0);
// Thread local variable containing each thread's ID
private static final ThreadLocal<Integer> threadId =
new ThreadLocal<Integer>() {
@Override protected Integer initialValue() {
return nextId.getAndIncrement();
}
};
// Returns the current thread's unique ID, assigning it if necessary
public static int get() {
return threadId.get();
}
}
Each thread holds an implicit reference to its copy of a thread-local variable as long as the thread is alive and the ThreadLocal
instance is accessible; after a thread goes away, all of its copies of thread-local instances are subject to garbage collection (unless other references to these copies exist).
Summary
Public constructors |
Creates a thread local variable.
|
Public methods |
open T? |
Returns the value in the current thread's copy of this thread-local variable.
|
open Unit |
Removes the current thread's value for this thread-local variable.
|
open Unit |
Sets the current thread's copy of this thread-local variable to the specified value.
|
open static ThreadLocal<S> |
Creates a thread local variable.
|
Protected methods |
open T? |
Returns the current thread's "initial value" for this thread-local variable.
|
Public constructors
ThreadLocal
ThreadLocal()
Creates a thread local variable.
Public methods
get
open fun get(): T?
Returns the value in the current thread's copy of this thread-local variable. If the variable has no value for the current thread, it is first initialized to the value returned by an invocation of the initialValue
method.
Return |
T? |
the current thread's value of this thread-local |
remove
open fun remove(): Unit
Removes the current thread's value for this thread-local variable. If this thread-local variable is subsequently read by the current thread, its value will be reinitialized by invoking its initialValue
method, unless its value is set by the current thread in the interim. This may result in multiple invocations of the initialValue
method in the current thread.
set
open fun set(value: T): Unit
Sets the current thread's copy of this thread-local variable to the specified value. Most subclasses will have no need to override this method, relying solely on the initialValue
method to set the values of thread-locals.
Parameters |
value |
T: the value to be stored in the current thread's copy of this thread-local. |
withInitial
open static fun <S : Any!> withInitial(supplier: Supplier<out S>): ThreadLocal<S>
Creates a thread local variable. The initial value of the variable is determined by invoking the get
method on the Supplier
.
Parameters |
<S> |
the type of the thread local's value |
supplier |
Supplier<out S>: the supplier to be used to determine the initial value |
Exceptions |
java.lang.NullPointerException |
if the specified supplier is null |
Protected methods
initialValue
protected open fun initialValue(): T?
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 the get
method, unless the thread previously invoked the set
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 remove
followed by get
.
Return |
T? |
the initial value for this thread-local |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-08-20 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[],[],null,["# ThreadLocal\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nThreadLocal\n===========\n\n```\nopen class ThreadLocal\u003cT : Any!\u003e\n```\n\n|---|----------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) ||\n| ↳ | [java.lang.ThreadLocal](#) |\n\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Direct Subclasses [InheritableThreadLocal](/reference/kotlin/java/lang/InheritableThreadLocal) |------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [InheritableThreadLocal](/reference/kotlin/java/lang/InheritableThreadLocal) | This class extends `ThreadLocal` to provide inheritance of values from parent thread to child thread: when a child thread is created, the child receives initial values for all inheritable thread-local variables for which the parent has values. | |\n\nThis class provides thread-local variables. These variables differ from their normal counterparts in that each thread that accesses one (via its `get` or `set` method) has its own, independently initialized copy of the variable. `ThreadLocal` instances are typically private static fields in classes that wish to associate state with a thread (e.g., a user ID or Transaction ID).\n\nFor example, the class below generates unique identifiers local to each thread. A thread's id is assigned the first time it invokes `ThreadId.get()` and remains unchanged on subsequent calls. \n\n```kotlin\nimport java.util.concurrent.atomic.AtomicInteger;\n \n public class ThreadId {\n // Atomic integer containing the next thread ID to be assigned\n private static final AtomicInteger nextId = new AtomicInteger(0);\n \n // Thread local variable containing each thread's ID\n private static final ThreadLocal\u003cInteger\u003e threadId =\n new ThreadLocal\u003cInteger\u003e() {\n @Override protected Integer initialValue() {\n return nextId.getAndIncrement();\n }\n };\n \n // Returns the current thread's unique ID, assigning it if necessary\n public static int get() {\n return threadId.get();\n }\n }\n \n```\n\nEach thread holds an implicit reference to its copy of a thread-local variable as long as the thread is alive and the `ThreadLocal` instance is accessible; after a thread goes away, all of its copies of thread-local instances are subject to garbage collection (unless other references to these copies exist).\n\nSummary\n-------\n\n| Public constructors ||\n|--------------------------------------------------------------------|---|\n| [ThreadLocal](#ThreadLocal())`()` Creates a thread local variable. |\n\n| Public methods ||\n|-----------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| open T? | [get](#get())`()` Returns the value in the current thread's copy of this thread-local variable. |\n| open [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) | [remove](#remove())`()` Removes the current thread's value for this thread-local variable. |\n| open [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) | [set](#set(java.lang.ThreadLocal.T))`(`value:` `T`)` Sets the current thread's copy of this thread-local variable to the specified value. |\n| open static [ThreadLocal](#)\\\u003cS\\\u003e | [withInitial](#withInitial(java.util.function.Supplier))`(`supplier:` `[Supplier](../util/function/Supplier.html#)\u003cout` `S\u003e`)` Creates a thread local variable. |\n\n| Protected methods ||\n|---------|------------------------------------------------------------------------------------------------------------------|\n| open T? | [initialValue](#initialValue())`()` Returns the current thread's \"initial value\" for this thread-local variable. |\n\nPublic constructors\n-------------------\n\n### ThreadLocal\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nThreadLocal()\n```\n\nCreates a thread local variable. \n**See Also**\n\n- \u003c#withInitial(java.util.function.Supplier)\u003e\n\nPublic methods\n--------------\n\n### get\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nopen fun get(): T?\n```\n\nReturns the value in the current thread's copy of this thread-local variable. If the variable has no value for the current thread, it is first initialized to the value returned by an invocation of the [initialValue](#initialValue()) method.\n\n| Return ||\n|----|-------------------------------------------------|\n| T? | the current thread's value of this thread-local |\n\n### remove\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nopen fun remove(): Unit\n```\n\nRemoves the current thread's value for this thread-local variable. If this thread-local variable is subsequently [read](#get()) by the current thread, its value will be reinitialized by invoking its [initialValue](#initialValue()) method, unless its value is [set](#set(java.lang.ThreadLocal.T)) by the current thread in the interim. This may result in multiple invocations of the `initialValue` method in the current thread. \n\n### set\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nopen fun set(value: T): Unit\n```\n\nSets the current thread's copy of this thread-local variable to the specified value. Most subclasses will have no need to override this method, relying solely on the [initialValue](#initialValue()) method to set the values of thread-locals.\n\n| Parameters ||\n|---------|------------------------------------------------------------------------------|\n| `value` | T: the value to be stored in the current thread's copy of this thread-local. |\n\n### withInitial\n\nAdded in [API level 26](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nopen static fun \u003cS : Any!\u003e withInitial(supplier: Supplier\u003cout S\u003e): ThreadLocal\u003cS\u003e\n```\n\nCreates a thread local variable. The initial value of the variable is determined by invoking the `get` method on the `Supplier`.\n\n| Parameters ||\n|------------|--------------------------------------------------------------------------------------------------------------|\n| `\u003cS\u003e` | the type of the thread local's value |\n| `supplier` | [Supplier](../util/function/Supplier.html#)\\\u003cout S\\\u003e: the supplier to be used to determine the initial value |\n\n| Return ||\n|---------------------|-----------------------------|\n| [ThreadLocal](#)\u003cS\u003e | a new thread local variable |\n\n| Exceptions ||\n|----------------------------------|-----------------------------------|\n| `java.lang.NullPointerException` | if the specified supplier is null |\n\nProtected methods\n-----------------\n\n### initialValue\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nprotected open fun initialValue(): T?\n```\n\nReturns 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 the [get](#get()) method, unless the thread previously invoked the [set](#set(java.lang.ThreadLocal.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 [remove](#remove()) followed by [get](#get()).\n\n| Return ||\n|----|-----------------------------------------|\n| T? | the initial value for this thread-local |\n\n**See Also**\n\n- \u003c#withInitial(java.util.function.Supplier)\u003e"]]