using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Future.Contract
{
///
/// 用于指定统一过程调用结果回执的行为码
///
[Flags]
public enum EInstructReceipt : int
{
///
/// 正常执行完成,可以继续执行;
///
Normal = 1,
///
/// 产生告警信息,可以继续执行;
///
Warning = 2,
///
/// 产生崩溃异常,需要中断执行;
///
Failed = 4
}
}