using FLY.OBJComponents.Common;
using FLY.OBJComponents.Server.Model;
using FObjBase;
using FObjBase.Reflect;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FLY.OBJComponents.IService
{
///
/// 报警管理系统,配置,整个历史列表
///
public interface IWarningSystem2Service : INotifyPropertyChanged
{
///
/// 报警使能
///
bool Enable { get; set; }
///
/// 正在响铃
///
bool IsRinging { get; }
///
/// 复位,把全部报警消失
///
void Reset();
///
/// 静音,不消失报警,只是静音,新的报警来,还是会响
///
void Silence();
///
/// 当前报警列表
///
FlyData_WarningHistory[] ReasonList { get; }
///
/// 最后一条数据Id
///
long LastId { get; }
///
/// 获取纵向趋势图
///
///
///
///
[Call(typeof(Pack_GetTrendReponse))]
void GetTrend(
Pack_GetTrendRequest request,
AsyncCBHandler asyncDelegate, object asyncContext);
}
}