org.activiti.engine.impl.pvm.delegate
接口 SubProcessActivityBehavior

所有超级接口:
ActivityBehavior, Serializable
所有已知实现类:
CallActivityBehavior, MultiInstanceActivityBehavior, ParallelMultiInstanceBehavior, SequentialMultiInstanceBehavior

public interface SubProcessActivityBehavior
extends ActivityBehavior

behavior for activities that delegate to a complete separate execution of a process definition. In BPMN terminology this can be used to implement a reusable subprocess.

作者:
Tom Baeyens

方法摘要
 void completed(ActivityExecution execution)
          called after the process instance is destroyed for this activity to perform its outgoing control flow logic.
 void completing(DelegateExecution execution, DelegateExecution subProcessInstance)
          called before the process instance is destroyed to allow this activity to extract data from the sub process instance.
 
从接口 org.activiti.engine.impl.pvm.delegate.ActivityBehavior 继承的方法
execute
 

方法详细信息

completing

void completing(DelegateExecution execution,
                DelegateExecution subProcessInstance)
                throws Exception
called before the process instance is destroyed to allow this activity to extract data from the sub process instance. No control flow should be done on the execution yet.

抛出:
Exception

completed

void completed(ActivityExecution execution)
               throws Exception
called after the process instance is destroyed for this activity to perform its outgoing control flow logic.

抛出:
Exception


Copyright © 2013 Alfresco. All rights reserved.