Assembly: OptimaJet.Workflow.Core

Enum ActivityExecutionEventType

OptimaJet.Workflow.Core.Logging.Events.ActivityExecutionEventType

Specifies categories for workflow execution events stored in ProcessLogEntry.Properties.

public enum ActivityExecutionEventType

Fields

StartExecution = 0 #
Indicates the beginning of execution from one activity to another.
EndExecution = 1 #
Indicates the end of execution at the destination activity.
ResumeExecution = 2 #
Indicates that workflow execution resumed from an activity.
InitializeProcess = 3 #
Indicates initialization and initial execution of a process.
InitializeSubProcess = 4 #
Indicates initialization and initial execution of a subprocess.
SelectActivity = 5 #
Indicates evaluation of candidate transitions to select the next activity.
ExecuteCustomActivity = 6 #
Indicates execution of a custom ActivityBase implementation.
CallAction = 7 #
Indicates that an action was invoked through CodeActionsInvoker.
CallCondition = 8 #
Indicates evaluation of a ConditionType.Expression condition for a transition.
CallActionCondition = 9 #
Indicates that a ConditionType.Action condition was evaluated through CodeActionsInvoker.
CallActionFromProvider = 10 #
Indicates that an action was invoked through an IWorkflowActionProvider.
CallConditionFromProvider = 11 #
Indicates that a ConditionType.Action condition was evaluated through an IWorkflowActionProvider.
FoundAlwaysCondition = 12 #
Indicates selection of a transition with a ConditionType.Always condition.
FoundCondition = 13 #
Indicates evaluation of a transition with a ConditionType.Action or ConditionType.Expression condition.
FoundOtherwiseCondition = 14 #
Indicates selection of a fallback transition with a ConditionType.Otherwise condition.
ActionNotImplemented = 15 #
Indicates that no implementation could be resolved for an action.
ActionConditionNotImplemented = 16 #
Indicates that no implementation could be resolved for a ConditionType.Action condition.
ActivityExecutionError = 17 #
Indicates that activity execution failed with a Exception.
InverseCondition = 18 #
Indicates inversion of a condition result as configured by ConditionDefinition.ConditionInversion.
ExecuteTransition = 19 #
Indicates execution of the activity selected for the current workflow step.
IdleTimeout = 20 #
Indicates that the timeout configured by ActivityDefinition.IdleTimeout elapsed.
ExecuteAttempt = 21 #
Indicates an additional execution attempt configured by ActivityTimeoutType.Retry or ActivityExceptionsHandlerType.Retry.
HandlingTimeout = 22 #
Indicates handling of an elapsed ActivityDefinition.ExecutionTimeout.
HandlingException = 23 #
Indicates exception handling configured by ActivityDefinition.ExceptionsHandlers.
TriggerTransition = 24 #
Indicates that transitions were triggered by a TriggerType.Command or TriggerType.Timer trigger.
SetActivityWithExecution = 25 #
Indicates setting ProcessInstance.CurrentActivityName and continuing workflow execution from that activity.
SetState = 26 #
Indicates a change to ProcessInstance.CurrentState during transition execution.
SetActivity = 27 #
Indicates a change to ProcessInstance.CurrentActivityName during transition execution.