using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Future.Contract
{
///
/// 输出扩展通道接口,用于指令序列实时输入输出;可以用于态势感知视图
///
public interface IOutputChannel
{
///
/// 向管道写入消息
///
///
void WriteInstructResult(InstructResult message);
///
/// 消息计数
///
int OutputMessageCount { get; }
///
/// 重置管道状态等工作记录,准备开始新一轮的工作
///
void Reset();
}
}