iforkhandler.cs

来自「工作流的基本资料(文档资料」· CS 代码 · 共 17 行

CS
17
字号
namespace NetBpm.Workflow.Delegation
{
	/// <summary> specifies the behaviour of a {@link NetBpm.Workflow.Definition.IFork}.</summary>
	public interface IForkHandler
	{
		/// <summary> calculates the names of the {@link NetBpm.Workflow.Definition.ITransition}s to be activated
		/// concurrently. The same name can be added multiple times to start multiple instances of the 
		/// same flow.  All of the forked {@link NetBpm.Workflow.Execution.IFlow}s will be synchronized 
		/// in the same {@link NetBpm.Workflow.Definition.IJoin}.  
		/// </summary>
		/// <param name="forkContext">is the object that allows the Forker-implementator to communicate with the netBpm process engine.
		/// </param>
		/// <returns> a Collection of {@link NetBpm.Workflow.Definition.ITransition}s for which a concurrent {@link NetBpm.Workflow.Execution.IFlow} has to be created.
		/// </returns>
		void Fork(IForkContext forkContext);
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?