Class ProcessHistoryItem
Represents a record of transition of process from one Activity to another
Inheritance
↳ object
↳ ProcessHistoryItem
Inherited Members
Equals(object)
Equals(object, object)
GetHashCode()
GetType()
MemberwiseClone()
ReferenceEquals(object, object)
ToString()
Namespace: OptimaJet.Workflow.Core.Runtime
Assembly: OptimaJet.Workflow.Core.dll
Syntaxpublic class ProcessHistoryItem
Properties
ProcessId
Id of a process instance
Declarationpublic Guid ProcessId { get; set; }
Type | Description |
---|---|
Guid |
ActorIdentityId
An user id for whom a command was executed
Declarationpublic string ActorIdentityId { get; set; }
Type | Description |
---|---|
string |
ExecutorName
An user id who executed a command
Declarationpublic string ExecutorName { get; set; }
Type | Description |
---|---|
string |
ActorName
An user name for whom a command was executed
Declarationpublic string ActorName { get; set; }
Type | Description |
---|---|
string |
ExecutorIdentityId
An user name who executed a command
Declarationpublic string ExecutorIdentityId { get; set; }
Type | Description |
---|---|
string |
FromActivityName
Source activity name
Declarationpublic string FromActivityName { get; set; }
Type | Description |
---|---|
string |
FromStateName
Source state name if the state name was specified in source activity
Declarationpublic string FromStateName { get; set; }
Type | Description |
---|---|
string |
IsFinalised
If true specifies that process was finalized by this transition.
Declarationpublic bool IsFinalised { get; set; }
Type | Description |
---|---|
bool |
ToActivityName
Destination activity name
Declarationpublic string ToActivityName { get; set; }
Type | Description |
---|---|
string |
ToStateName
Source state name if the state name was specified in destination activity
Declarationpublic string ToStateName { get; set; }
Type | Description |
---|---|
string |
TransitionClassifier
Classifier of a transition direction
Declarationpublic TransitionClassifier TransitionClassifier { get; set; }
Type | Description |
---|---|
TransitionClassifier |
TransitionTime
Time of an execution of transition
Declarationpublic DateTime TransitionTime { get; set; }
Type | Description |
---|---|
DateTime |
TriggerName
Name of a command or timer an execution of which led to an execution of transition
Declarationpublic string TriggerName { get; set; }
Type | Description |
---|---|
string |
StartTransitionTime
Time of an start execution of transition
Declarationpublic DateTime? StartTransitionTime { get; set; }
Type | Description |
---|---|
DateTime? |
TransitionDuration
Duration of an execution of transition in ms
Declarationpublic long? TransitionDuration { get; set; }
Type | Description |
---|---|
long? |