logcomponent.cs

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

CS
26
字号
using System;
using System.Collections;
using NetBpm.Util.Client;
using NetBpm.Workflow.Execution;

namespace NetBpm.Workflow.Log
{
	/// <summary> is the interface for the log component.</summary>
	public interface LogComponent
	{
		IList findProcessInstances(DateTime startedAfter, DateTime startedBefore, String initiatorActorId, String actorId, Int64 processDefinitionId);

		IList findProcessInstances(DateTime startedAfter, DateTime startedBefore, String initiatorActorId, String actorId, Int64 processDefinitionId, Relations relations);

		IProcessInstance getProcessInstance(Int64 processInstanceId);

		/// <summary> gets a processInstance with all its flows recursively.
		/// Note that the relations are resolved on the Flows and not the ProcessInstance.
		/// </summary>
		IProcessInstance getProcessInstance(Int64 processInstanceId, Relations relations);

		IFlow getFlow(Int64 flowId);

		IFlow getFlow(Int64 subFlowId, Relations flowRelations);
	}
}

⌨️ 快捷键说明

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