ThreadPoolTrace Class

Executes a trace on the ThreadPool for all callbacks currently queued. This will not include work items that have a time delayed callback.

Definition

Namespace: Gemstone.Diagnostics
Assembly: Gemstone.Diagnostics (in Gemstone.Diagnostics.dll) Version: 1.0.150 -- Release Build+2592e65d65fe0b04e044df0bc79f2e5da6464eee
public static class ThreadPoolTrace
Inheritance
Object    ThreadPoolTrace

Remarks

This class heavily relies on reflection to get the ThreadPool queue. Therefore it is very unlikely to work in MONO and can break if Microsoft changes any of the member names or how the ThreadPool works. In this case WorksInThisRuntime will be set to false and GetTrace(StringBuilder) will return "Not Supported"

Properties

WorksInThisRuntime Indicates that this trace works in the runtime version of .NET.

Methods

GetTrace Traces all queued items on the ThreadPool.

See Also