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