Interface IWorkflowRunTasksForEventParams
- All Known Implementing Classes:
WorkflowRunTasksForEventParams
public interface IWorkflowRunTasksForEventParams
Parameters that are passed to
IWorkflowTaskRunner.runTasksForEvent(IWorkflowRunTasksForEventParams)
.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescription
-
Method Details
-
getEventData
IWorkflowEventData getEventData()- Returns:
- The event that triggered the tasks to be run. Used to check the preconditions when running a task, see
ITriggerHandler.isPreconditionSatisfied(de.xima.fc.interfaces.workflow.event.ITriggerPreconditionSatisfiedParams)
Can benull
, in which case preconditions are not checked.
-
getQueuedItems
Iterable<IWorkflowQueueItem> getQueuedItems()- Returns:
- A workflow task that should be executed.
-