use of org.activiti.engine.impl.pvm.delegate.SubProcessActivityBehavior in project Activiti by Activiti.
the class AtomicOperationProcessEnd method eventNotificationsCompleted.
@Override
protected void eventNotificationsCompleted(InterpretableExecution execution) {
InterpretableExecution superExecution = execution.getSuperExecution();
SubProcessActivityBehavior subProcessActivityBehavior = null;
// copy variables before destroying the ended sub process instance
if (superExecution != null) {
ActivityImpl activity = (ActivityImpl) superExecution.getActivity();
subProcessActivityBehavior = (SubProcessActivityBehavior) activity.getActivityBehavior();
try {
subProcessActivityBehavior.completing(superExecution, execution);
} catch (RuntimeException e) {
log.error("Error while completing sub process of execution {}", execution, e);
throw e;
} catch (Exception e) {
log.error("Error while completing sub process of execution {}", execution, e);
throw new ActivitiException("Error while completing sub process of execution " + execution, e);
}
}
execution.destroy();
execution.remove();
// and trigger execution afterwards
if (superExecution != null) {
superExecution.setSubProcessInstance(null);
try {
subProcessActivityBehavior.completed(superExecution);
} catch (RuntimeException e) {
log.error("Error while completing sub process of execution {}", execution, e);
throw e;
} catch (Exception e) {
log.error("Error while completing sub process of execution {}", execution, e);
throw new ActivitiException("Error while completing sub process of execution " + execution, e);
}
}
}
Aggregations