JobThreadOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the various thread options that can be used for the ThreadBasedJob.
public enum class JobThreadOptions
public enum JobThreadOptions
type JobThreadOptions =
Public Enum JobThreadOptions
- Inheritance
-
JobThreadOptions
Fields
Name | Value | Description |
---|---|---|
Default | 0 | Use the default behavior, which is to use a ThreadPoolThread. |
UseThreadPoolThread | 1 | Use a thread pool thread. |
UseNewThread | 2 | Create a new thread everything and reuse. |