Interface IExtendedTriggeredWorkflowExecutionResult
public interface IExtendedTriggeredWorkflowExecutionResult
Extended data for a
ITriggeredWorkflowExecutionResult that provides more data, but requires access to deeper
system functionality. Only available on a master server, not on a frontend server or via the API provider; and not
serializable.- Since:
- 8.2.0
-
Method Summary
Modifier and TypeMethodDescriptionThe base workflow execution result.If no workflow context was given, a workflow event gets triggered and the workflow is executed.
-
Method Details
-
baseResult
ITriggeredWorkflowExecutionResult baseResult()The base workflow execution result.- Returns:
- The base workflow execution result.
-
eventExecutionResult
IEventExecutionResult eventExecutionResult()If no workflow context was given, a workflow event gets triggered and the workflow is executed. This will then return the result of the workflow event execution.Otherwise, a workflow event gets added to the current workflow task execution queue and this method will return null.
- Returns:
- The result of the workflow event execution.
-