Click or drag to resize

SystemThreadLocalT Class

IThreadLocal implementation that uses the native support in the CLR (i.e. the LocalDataStoreSlot).
Inheritance Hierarchy
SystemObject
  com.espertech.esper.compat.threading.threadlocalSystemThreadLocalT

Namespace:  com.espertech.esper.compat.threading.threadlocal
Assembly:  NEsper.Compat (in NEsper.Compat.dll) Version: 8.0.0.0
Syntax
C#
public class SystemThreadLocal<T> : IThreadLocal<T>, 
	IDisposable
where T : class

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:com.espertech.esper.compat.threading.threadlocal.SystemThreadLocal`1"]

The SystemThreadLocalT type exposes the following members.

Constructors
  NameDescription
Public methodSystemThreadLocalT
Initializes a new instance of the SystemThreadLocalT class
Top
Properties
  NameDescription
Public propertyValue
Gets or sets the value.
Top
Methods
  NameDescription
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Public methodGetOrCreate
Gets the data or creates it if not found.
Public methodRemove
Resets the thread local instance.
Top
See Also