Click or drag to resize

FastThreadStoreT Class

FastThreadStore is a variation of the FastThreadLocal, but it lacks a factory for object creation. While there are plenty of cases where this makes sense, we actually did this to work around an issue in .NET 3.5 SP1.
Inheritance Hierarchy
SystemObject
  com.espertech.esper.compat.threading.threadlocalFastThreadStoreT

Namespace:  com.espertech.esper.compat.threading.threadlocal
Assembly:  NEsper.Compat (in NEsper.Compat.dll) Version: 8.0.0.0
Syntax
C#
[SerializableAttribute]
public class FastThreadStore<T>
where T : class

Type Parameters

T

The FastThreadStoreT type exposes the following members.

Constructors
  NameDescription
Public methodFastThreadStoreT
Initializes a new instance of the FastThreadStoreT class.
Top
Properties
  NameDescription
Public propertyInstanceId
Gets the instance id ... if you really must know.
Public propertyValue
Gets or sets the value.
Top
Methods
  NameDescription
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Protected methodFinalize
Releases unmanaged resources and performs other cleanup operations before the FastThreadStoreT is reclaimed by garbage collection.
(Overrides ObjectFinalize.)
Top
See Also