PSThreadOptions 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.
These options control whether a new thread is created when a command is executed within a runspace.
public enum class PSThreadOptions
public enum PSThreadOptions
type PSThreadOptions =
Public Enum PSThreadOptions
- Inheritance
-
PSThreadOptions
Fields
Name | Value | Description |
---|---|---|
Default | 0 | Use the default options: UseNewThread for local Runspace, ReuseThread for local RunspacePool, server settings for remote Runspace and RunspacePool. |
UseNewThread | 1 | Creates a new thread for each invocation. |
ReuseThread | 2 | Creates a new thread for the first invocation and then re-uses that thread in subsequent invocations. |
UseCurrentThread | 3 | Doesn't create a new thread; the execution occurs on the thread that calls Invoke. This option is not valid for asynchronous calls. |