⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logcomponent.cs

📁 基于DotNet的开源工作流引擎
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -