using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FLY.Thick.Base.IService { /// /// 定点测量服务 /// public interface IFixService { /// /// 注册timegrid 事件 /// /// void RegistTimeGridEvent(FixEventHandler handler); /// /// 关闭注册timegrid 事件 /// /// void UnRegistTimeGridEvent(FixEventHandler handler); } public delegate void FixEventHandler(object sender, FixEventArgs e); public class FixEventArgs : EventArgs { /// /// 数据, AD数据!!!!! /// public int[] ADs; /// /// 数据, 厚度数据!!!!! /// public double[] thicks; /// /// 单数据时间间隔 /// public TimeSpan ts; /// /// 开始时间点 /// public DateTime time; } }