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

18 lines
291 B
C#

using System;
namespace Aitex.Core.RT.DataCollection.HighPerformance;
public interface IDataBuffer
{
int Index { get; }
string Name { get; }
Type ValueType { get; }
Func<object> Read{ get; }
void Cache(long timestamp);
string Get(long timestamp);
}