Class ThreadSafeValue<T>
Provides a thread-safe wrapper for a value of type T
.
Inherited Members
Namespace: Coree.NETStandard.Classes.ThreadSafeValue
Assembly: Coree.NETStandard.dll
Syntax
public class ThreadSafeValue<T>
Type Parameters
Name | Description |
---|---|
T | The type of the value to be stored. This can be any type, including nullable and non-nullable types. |
Remarks
This class is designed to allow safe concurrent access to a value by multiple threads.
It uses a locking mechanism to ensure that only one thread can read or modify the value at any time,
preventing race conditions and ensuring consistency of the value across threads.
The type T
can be either a value type or a reference type. If T
is a reference type.
Constructors
| Edit this page View SourceThreadSafeValue(T?)
Initializes a new instance of the ThreadSafeValue<T> class, optionally with an initial value.
Declaration
public ThreadSafeValue(T? initialValue = default)
Parameters
Type | Name | Description |
---|---|---|
T | initialValue | The initial value to store. Default is the default value of type |
Properties
| Edit this page View SourceValue
Gets or sets the value in a thread-safe manner.
Declaration
public T? Value { get; set; }
Property Value
Type | Description |
---|---|
T | The current value stored within the ThreadSafeValue<T> instance. |
Remarks
Access to the value is synchronized, ensuring that read and write operations are safe to use from multiple threads concurrently. The property getter returns the current value, and the property setter updates the value. Both operations are performed with thread safety in mind, using a private lock to synchronize access.