iassignmentcontext.cs

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

CS
23
字号
using NetBpm.Workflow.Definition;
using NetBpm.Workflow.Organisation;
using NetBpm.Workflow.Organisation.EComp;

namespace NetBpm.Workflow.Delegation
{
	/// <summary> allows the Assigner-implementator to interact with and get information from
	/// the process execution engine.
	/// </summary>
	public interface IAssignmentContext : IHandlerContext
	{
		/// <summary> since Assigner-implementations tend to use the organisation-component 
		/// this is a convenient way to get it.
		/// </summary>
		IOrganisationSessionLocal GetOrganisationComponent();

		/// <summary> gets the {@link ActivityState} for which an {@link Actor} has to be selected. </summary>
		new INode GetNode();

		/// <summary> gets the {@link Actor} that performed the previous activity-state.</summary>
		IActor GetPreviousActor();
	}
}

⌨️ 快捷键说明

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