|
BackgroundThreadsManagerThreadAbortDelayMs Property |
Gets or sets a integer value that specifies the number of milliseconds that are used to delay the call to Thread.Abort method after the thread is not used any more.
This is used to prevent creation and abortion of threads when the number of used threads is changing rapidly because the number of rendered objects is also changing.
Default value is 1000 and delays the thread abortion for 1 second. Zero value means that the unused threads are immediately aborted.
To immediately abort unused threads, set ThreadAbortDelayMs to 0 and then call
SetupThreads(Int32) method.
Namespace: Ab3d.DirectX.ThreadingAssembly: Ab3d.DXEngine (in Ab3d.DXEngine.dll) Version: 7.0.8865.1045
Syntax public double ThreadAbortDelayMs { get; set; }
Property Value
DoubleSee Also