Interface IWorkflowQueueItem
-
- All Known Implementing Classes:
WorkflowQueueItem
public interface IWorkflowQueueItem
Instance passed toIWorkflowTaskRunner
. Contains the task to be run and the trigger(s) that were fired for that task.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IWorkflowEventData
getEventData()
WorkflowTask
getTask()
WorkflowTrigger
getTrigger()
-
-
-
Method Detail
-
getEventData
@Nullable IWorkflowEventData getEventData()
- Returns:
- Event data to be used for this task. When
null
, uses the event data of the event that orginally triggered the workflow.
-
getTask
WorkflowTask getTask()
- Returns:
- The task to be run.
-
getTrigger
WorkflowTrigger getTrigger()
- Returns:
- A trigger of the task that was fired and resulted in the task being run.
-
-