
Workflows Represents a single execution of a SimpleWorkflow bean.
Field | Definition |
---|---|
|
Unique row ID |
|
Token associated with the workflow to correlate with messaging. See Informational#getLaunchToken(). |
|
Optional. A reference value to which this workflow is correlated. The system will not start more than one workflow for a given reference value. The value must be less than or equal to 36 chars in length. Usually a ULID primary key for an entity. |
|
The name of the workflow. Must match the Spring bean name. |
|
Short description of the purpose of the workflow. |
|
The status of execution of the workflow. |
|
The timestamp of when the most recently executing step will time out. |
|
The name of the most recently executing step in this workflow execution. |
|
The most recent exception that took place during a previous workflow execution. |
Side Effects represent a non-deterministic element in a workflow that, upon replay, should be utilized to re-establish workflow state, rather than re-executing the non-deterministic function used to originally acquire the element.
Field | Definition |
---|---|
|
Unique row ID |
|
The type of side effect being applied. |
|
The serialized value of the side effect. |
|
The id of the workflow to which this side effect belongs |
Context Values represent a single key/value pair passed to the workflow execution during the WorkflowEndpoint#start(ContextInfo, String, Map) call.
Field | Definition |
---|---|
|
Unique row ID |
|
The key of the context item |
|
The value of the context item |
|
The type of value being stored |
|
The id of the workflow to which this side effect belongs |
Activity Logs represent Arbitrary log entry made during the execution of an activity in a workflow.
Field | Definition |
---|---|
|
Unique row ID |
|
The key name for the log entry |
|
The value of the log entry |
|
The name of the activity in which the log entry was made |
|
The id of the workflow to which this side effect belongs |