ThreadLocal.Get Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the value in the current thread's copy of this thread-local variable.
[Android.Runtime.Register("get", "()Ljava/lang/Object;", "GetGetHandler")]
public virtual Java.Lang.Object? Get ();
[<Android.Runtime.Register("get", "()Ljava/lang/Object;", "GetGetHandler")>]
abstract member Get : unit -> Java.Lang.Object
override this.Get : unit -> Java.Lang.Object
Returns
the current thread's value of this thread-local
- Attributes
Remarks
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.
Java documentation for java.lang.ThreadLocal.get()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.