Package org.activiti.engine.impl.agenda
Class ContinueProcessOperation
- java.lang.Object
-
- org.activiti.engine.impl.agenda.AbstractOperation
-
- org.activiti.engine.impl.agenda.ContinueProcessOperation
-
- All Implemented Interfaces:
java.lang.Runnable
public class ContinueProcessOperation extends AbstractOperation
Operation that takes the currentFlowElementset on theExecutionEntityand executes the associatedActivityBehavior. In the case of async, schedules aJob.Also makes sure the
ExecutionListenerinstances are called.
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanforceSynchronousOperationprotected booleaninCompensation-
Fields inherited from class org.activiti.engine.impl.agenda.AbstractOperation
agenda, commandContext, execution
-
-
Constructor Summary
Constructors Constructor Description ContinueProcessOperation(CommandContext commandContext, ExecutionEntity execution)ContinueProcessOperation(CommandContext commandContext, ExecutionEntity execution, boolean forceSynchronousOperation, boolean inCompensation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcontinueThroughFlowNode(org.activiti.bpmn.model.FlowNode flowNode)protected voidcontinueThroughSequenceFlow(org.activiti.bpmn.model.SequenceFlow sequenceFlow)protected voidcreateChildExecutionForSubProcess(org.activiti.bpmn.model.SubProcess subProcess)protected voidexecuteActivityBehavior(ActivityBehavior activityBehavior, org.activiti.bpmn.model.FlowNode flowNode)protected voidexecuteAsynchronous(org.activiti.bpmn.model.FlowNode flowNode)protected voidexecuteBoundaryEvents(java.util.Collection<org.activiti.bpmn.model.BoundaryEvent> boundaryEvents, ExecutionEntity execution)protected voidexecuteMultiInstanceSynchronous(org.activiti.bpmn.model.FlowNode flowNode)protected voidexecuteProcessStartExecutionListeners()protected voidexecuteSynchronous(org.activiti.bpmn.model.FlowNode flowNode)voidrun()-
Methods inherited from class org.activiti.engine.impl.agenda.AbstractOperation
executeExecutionListeners, executeExecutionListeners, findFirstParentScopeExecution, getAgenda, getCommandContext, getCurrentFlowElement, getExecution, setAgenda, setCommandContext, setExecution
-
-
-
-
Constructor Detail
-
ContinueProcessOperation
public ContinueProcessOperation(CommandContext commandContext, ExecutionEntity execution, boolean forceSynchronousOperation, boolean inCompensation)
-
ContinueProcessOperation
public ContinueProcessOperation(CommandContext commandContext, ExecutionEntity execution)
-
-
Method Detail
-
run
public void run()
-
executeProcessStartExecutionListeners
protected void executeProcessStartExecutionListeners()
-
continueThroughFlowNode
protected void continueThroughFlowNode(org.activiti.bpmn.model.FlowNode flowNode)
-
createChildExecutionForSubProcess
protected void createChildExecutionForSubProcess(org.activiti.bpmn.model.SubProcess subProcess)
-
executeSynchronous
protected void executeSynchronous(org.activiti.bpmn.model.FlowNode flowNode)
-
executeAsynchronous
protected void executeAsynchronous(org.activiti.bpmn.model.FlowNode flowNode)
-
executeMultiInstanceSynchronous
protected void executeMultiInstanceSynchronous(org.activiti.bpmn.model.FlowNode flowNode)
-
executeActivityBehavior
protected void executeActivityBehavior(ActivityBehavior activityBehavior, org.activiti.bpmn.model.FlowNode flowNode)
-
continueThroughSequenceFlow
protected void continueThroughSequenceFlow(org.activiti.bpmn.model.SequenceFlow sequenceFlow)
-
executeBoundaryEvents
protected void executeBoundaryEvents(java.util.Collection<org.activiti.bpmn.model.BoundaryEvent> boundaryEvents, ExecutionEntity execution)
-
-