Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/RT/DataCollection/HighPerformance/IDataRecorderCache.cs

21 lines
445 B
C#

using System.Collections.Generic;
namespace Aitex.Core.RT.DataCollection.HighPerformance
{
public interface IDataRecorderCache
{
/// <summary>
/// 返回当前缓存服务的模组名称。
/// </summary>
string Module { get; }
IReadOnlyList<DataHolder> DataHolders { get; }
/// <summary>
/// 立即缓存当前数据。
/// </summary>
void Cache();
}
}