ilog.cs

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

CS
24
字号
using System;
using System.Collections;
using Iesi.Collections;
using NetBpm.Workflow.Definition;
using NetBpm.Workflow.Execution;
using NetBpm.Workflow.Organisation;

namespace NetBpm.Workflow.Log
{
	/// <summary> is the log of an event that occured during a process execution, it serves as a 
	/// container for {@link LogDetail}s.
	/// </summary>
	public interface ILog
	{
		Int64 Id { get; }
		IFlow Flow { get; }
		DateTime Date { get; }
		EventType EventType { get; }
		ISet Details { get; }

		IActor GetActor();
		IList GetObjectReferences(String className);
	}
}

⌨️ 快捷键说明

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