Interface IWorkflowRunTasksForEventParams
- 
- All Known Implementing Classes:
 WorkflowRunTasksForEventParams
public interface IWorkflowRunTasksForEventParamsParameters that are passed toIWorkflowTaskRunner.runTasksForEvent(IWorkflowRunTasksForEventParams).- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IWorkflowEventDatagetEventData()Iterable<IWorkflowQueueItem>getQueuedItems() 
 - 
 
- 
- 
Method Detail
- 
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.
 
 
 - 
 
 -