PSPersistableIdleAction 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 action that occurs when a workflow becomes idle when persistence is allowed.
public enum class PSPersistableIdleAction
public enum class PSPersistableIdleAction
enum PSPersistableIdleAction
public enum PSPersistableIdleAction
type PSPersistableIdleAction =
Public Enum PSPersistableIdleAction
- Inheritance
-
PSPersistableIdleAction
Fields
Name | Value | Description |
---|---|---|
NotDefined | 0 | No or null action is defined so fall back to default. |
None | 1 | Specifies that no action is taken. |
Persist | 2 | Specifies that the System.Activities.WorkflowApplication should persist the workflow. |
Unload | 3 | Specifies that the System.Activities.WorkflowApplication should persist and unload the workflow. The job will remain in running state because aysnc operation (out of proc or remote operation) is in progress. The System.Activities.WorkflowApplication will be loaded when async operation gets completed. |
Suspend | 4 | Specifies that the System.Activities.WorkflowApplication should persist and unload the workflow and Job is marked as suspended. |