PSPersistableIdleAction Enum

Definition

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

None 1

Specifies that no action is taken.

NotDefined 0

No or null action is defined so fall back to default.

Persist 2

Specifies that the System.Activities.WorkflowApplication should persist the workflow.

Suspend 4

Specifies that the System.Activities.WorkflowApplication should persist and unload the workflow and Job is marked as suspended.

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.

Applies to