Commit e6bcbe0b authored by 潘栩锋's avatar 潘栩锋 🚴

修改 WarningSystem.Init

parent cbf505fe
...@@ -27,12 +27,12 @@ namespace FLY.OBJComponents.Server ...@@ -27,12 +27,12 @@ namespace FLY.OBJComponents.Server
/// <summary> /// <summary>
/// 当前正在报警的!!!!!! /// 当前正在报警的!!!!!!
/// </summary> /// </summary>
public IBuffer<FlyData_WarningHistory> ReasonList { get; } public IBuffer<FlyData_WarningHistory> ReasonList { get; private set; }
/// <summary> /// <summary>
/// 最近报警列表 /// 最近报警列表
/// </summary> /// </summary>
public IBuffer<FlyData_WarningHistory> NewestList { get; } public IBuffer<FlyData_WarningHistory> NewestList { get; private set; }
#endregion #endregion
...@@ -42,16 +42,15 @@ namespace FLY.OBJComponents.Server ...@@ -42,16 +42,15 @@ namespace FLY.OBJComponents.Server
{ {
Enable = true; Enable = true;
ReasonList = new Buffer<FlyData_WarningHistory>(); ReasonList = new Buffer<FlyData_WarningHistory>();
}
public void Init()
{
NewestList = new BufferStorage<FlyData_WarningHistory>("warning_newest.csv"); NewestList = new BufferStorage<FlyData_WarningHistory>("warning_newest.csv");
} }
public void Init(IBufferAdd<FlyData_WarningHistory> newestList)
public WarningSystem(IBufferAdd<FlyData_WarningHistory> newestList)
{ {
Enable = true;
ReasonList = new Buffer<FlyData_WarningHistory>();
NewestList = newestList; NewestList = newestList;
} }
public void Reset() public void Reset()
{ {
ReasonList.Reset(); ReasonList.Reset();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment