CompensatingActionActionType Enumeration

The type of suggested action.

Definition

Namespace: Scanjour.Workflow4.Base
Assembly: Scanjour.Workflow4.Base (in Scanjour.Workflow4.Base.dll) Version: 24.4.0.0 (24.4.0.0)
C#
public enum ActionType

Members

Retry0 The operation from which the error originated, shall be retried. To this action the provided Delay and MaxRetryCount is usefull.
RetryProgressive1 Same as Retry but every loops double the Wait time
TryNextSource2 This action assumes that the operation that caused the error, is an operation on a subject in a chain of responsibilities. The action suggests that a similar operation is made on the next subject in the chain.
NotifyUserAndAbort3 The action suggests that the user is notified about the error and that the workflow subsequently is aborted.
Abort4 The action suggests that the workflow is aborted without further notification.
Done5 Set when the dispatcher succeeds

See Also