| 123456789101112131415161718192021 |
- using System;
- using SKMC.Api.Common.Types;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SKMC.Api.Common.Data
- {
- /// <summary>
- /// 数值趋势分析器接口
- /// </summary>
- public interface ITrendAnalyzer
- {
- void SetParam(Dictionary<string, object> param);
- void SetSource(BoundedQueue<float> boundedQueue);
- bool CheckTrend(out string desc);
- }
- }
|