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
{
///
/// 数值趋势分析器接口
///
public interface ITrendAnalyzer
{
void SetParam(Dictionary param);
void SetSource(BoundedQueue boundedQueue);
bool CheckTrend(out string desc);
}
}