Interface IDataResult
Interface for the data result.
Namespace: MESL.SqlRace.Domain.Infrastructure.DataPipeline
Assembly: MESL.SqlRace.Domain.dll
Syntax
public interface IDataResult
Properties
ChannelId
The channel ID that this result is for.
Declaration
uint ChannelId { get; }
Property Value
Type | Description |
---|---|
System.UInt32 |
Data
The data for this result.
Declaration
byte[] Data { get; }
Property Value
Type | Description |
---|---|
System.Byte[] |
Timestamps
The timestamps of the data for this result.
Declaration
long[] Timestamps { get; }
Property Value
Type | Description |
---|---|
System.Int64[] |