//============================================================== // Copyright (C) 2019 Inc. All rights reserved. // //============================================================== // Create by 种道洋 at 2019/12/27 18:45:02. // Version 1.0 // 种道洋 //============================================================== using System; using System.Collections.Generic; using System.Text; namespace Cdy.Tag { /// /// /// public interface IDataSerialize2 { #region ... Variables ... #endregion ...Variables... #region ... Events ... #endregion ...Events... #region ... Constructor... #endregion ...Constructor... #region ... Properties ... #endregion ...Properties... #region ... Methods ... /// /// 请求序列化文件 /// /// /// void RequestToSeriseFile(CompressMemory2 dataMemory,DateTime date); /// /// 手动更新历史数据 /// /// /// /// /// void ManualRequestToSeriseFile(int id, DateTime time, MarshalMemoryBlock data, int size); /// /// /// void RequestToSave(); #endregion ...Methods... #region ... Interfaces ... #endregion ...Interfaces... } }